Files
Wino-Mail/Wino.Core.Domain/Models/AutoDiscovery/AutoDiscoveryProviderSetting.cs

23 lines
554 B
C#
Raw Permalink Normal View History

2024-07-14 20:35:17 +02:00
using System.Text.Json.Serialization;
2024-04-18 01:44:37 +02:00
namespace Wino.Domain.Models.AutoDiscovery
2024-04-18 01:44:37 +02:00
{
public class AutoDiscoveryProviderSetting
{
2024-07-14 20:35:17 +02:00
[JsonPropertyName("protocol")]
2024-04-18 01:44:37 +02:00
public string Protocol { get; set; }
2024-07-14 20:35:17 +02:00
[JsonPropertyName("address")]
2024-04-18 01:44:37 +02:00
public string Address { get; set; }
2024-07-14 20:35:17 +02:00
[JsonPropertyName("port")]
2024-04-18 01:44:37 +02:00
public int Port { get; set; }
2024-07-14 20:35:17 +02:00
[JsonPropertyName("secure")]
2024-04-18 01:44:37 +02:00
public string Secure { get; set; }
2024-07-14 20:35:17 +02:00
[JsonPropertyName("username")]
2024-04-18 01:44:37 +02:00
public string Username { get; set; }
}
}