9 lines
165 B
C#
9 lines
165 B
C#
namespace LiteCharms.Features.Email.Configuration;
|
|
|
|
public class Account
|
|
{
|
|
public string? Username { get; set; }
|
|
|
|
public string? Password { get; set; }
|
|
}
|