8 lines
212 B
C#
8 lines
212 B
C#
|
|
namespace WatchIt.WebAPI.Services.Utility.Configuration.Model;
|
|||
|
|
|
|||
|
|
public class RootUser
|
|||
|
|
{
|
|||
|
|
public string Username { get; set; }
|
|||
|
|
public string Email { get; set; }
|
|||
|
|
public string Password { get; set; }
|
|||
|
|
}
|