SharpRSS/SharpRSS.Data/Domains/Auth/LoginModel.cs

7 lines
180 B
C#
Raw Normal View History

namespace SharpRSS.Data.Domains.Auth;
public class LoginModel
{
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}