SharpRSS/SharpRSS.API.Contracts/DTOs/Users/AuthenticateUser.cs

8 lines
215 B
C#
Raw Normal View History

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