2024-10-27 22:09:46 +01:00
|
|
|
|
namespace WatchIt.Website.Services.Configuration.Model;
|
2024-07-03 22:18:32 +02:00
|
|
|
|
|
|
|
|
|
|
public class Accounts
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Base { get; set; }
|
|
|
|
|
|
public string Register { get; set; }
|
|
|
|
|
|
public string Authenticate { get; set; }
|
|
|
|
|
|
public string AuthenticateRefresh { get; set; }
|
2024-07-30 16:19:51 +02:00
|
|
|
|
public string Logout { get; set; }
|
2024-11-03 23:01:34 +01:00
|
|
|
|
public string GetAccountProfilePicture { get; set; }
|
|
|
|
|
|
public string PutAccountProfilePicture { get; set; }
|
|
|
|
|
|
public string DeleteAccountProfilePicture { get; set; }
|
2024-10-27 20:22:55 +01:00
|
|
|
|
public string GetAccountInfo { get; set; }
|
2024-11-03 23:01:34 +01:00
|
|
|
|
public string PutAccountProfileInfo { get; set; }
|
2024-11-01 01:03:00 +01:00
|
|
|
|
public string GetAccountRatedMovies { get; set; }
|
|
|
|
|
|
public string GetAccountRatedSeries { get; set; }
|
2024-11-01 20:44:01 +01:00
|
|
|
|
public string GetAccountRatedPersons { get; set; }
|
2024-07-03 22:18:32 +02:00
|
|
|
|
}
|