mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-14 01:24:21 +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; }
|
||
|
}
|
||
|
}
|