Files
Wino-Mail/Wino.Core.Domain/Models/Accounts/ImapAuthenticationMethodModel.cs
Burak Kaan Köse cf9869b71e Revert "File scoped namespaces"
This reverts commit d31d8f574e.
2025-02-16 11:43:30 +01:00

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;
}
}