11 lines
371 B
C#
11 lines
371 B
C#
using Wino.Core.Domain.Enums;
|
|
|
|
namespace Wino.Core.Domain.Models.Accounts
|
|
{
|
|
public class ImapAuthenticationMethodModel(ImapAuthenticationMethod imapAuthenticationMethod, string displayName)
|
|
{
|
|
public ImapAuthenticationMethod ImapAuthenticationMethod { get; } = imapAuthenticationMethod;
|
|
public string DisplayName { get; } = displayName;
|
|
}
|
|
}
|