mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-14 01:24:21 +01:00
8 lines
215 B
C#
Executable File
8 lines
215 B
C#
Executable File
namespace SharpRSS.API.Contracts.DTOs.Users
|
|
{
|
|
public class AuthenticateUser
|
|
{
|
|
public string UserName { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
}
|
|
} |