mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-13 00:54:20 +01:00
9 lines
211 B
C#
9 lines
211 B
C#
namespace SharpRSS.API.Models.Auth
|
|
{
|
|
public class UserRequest
|
|
{
|
|
public string UserName { get; set; }
|
|
public string EMail { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
} |