mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2025-04-16 20:28:13 +02:00
7 lines
180 B
C#
7 lines
180 B
C#
namespace SharpRSS.Data.Domains.Auth;
|
|
|
|
public class LoginModel
|
|
{
|
|
public string UserName { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
} |