SharpRSS/SharpRSS.API.Contracts/Models/User/AuthenticateUser.cs

8 lines
216 B
C#
Raw Normal View History

2023-09-17 21:41:31 +02:00
namespace SharpRSS.API.Contracts.Models.User
{
public class AuthenticateUser
{
public string UserName { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
}