10 lines
349 B
C#
10 lines
349 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;
|
|
}
|