15 lines
551 B
C#
15 lines
551 B
C#
namespace WatchIt.Website.Services.Configuration.Model;
|
|
|
|
public class Accounts
|
|
{
|
|
public string Base { get; set; }
|
|
public string Register { get; set; }
|
|
public string Authenticate { get; set; }
|
|
public string AuthenticateRefresh { get; set; }
|
|
public string Logout { get; set; }
|
|
public string GetProfilePicture { get; set; }
|
|
public string GetAccountInfo { get; set; }
|
|
public string PutAccountInfo { get; set; }
|
|
public string GetAccountRatedMovies { get; set; }
|
|
public string GetAccountRatedSeries { get; set; }
|
|
} |