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

22 lines
505 B
C#
Raw Normal View History

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