16 lines
606 B
C#
16 lines
606 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; }
|
|
public string GetAccountRatedPersons { get; set; }
|
|
} |