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-11-05 20:04:15 +01:00
|
|
|
|
public string GetAccountProfileBackground { get; set; }
|
|
|
|
|
|
public string PutAccountProfileBackground { get; set; }
|
|
|
|
|
|
public string DeleteAccountProfileBackground { get; set; }
|
2024-11-06 15:52:26 +01:00
|
|
|
|
public string GetAccount { get; set; }
|
2024-11-03 23:01:34 +01:00
|
|
|
|
public string PutAccountProfileInfo { get; set; }
|
2024-11-06 00:11:45 +01:00
|
|
|
|
public string PatchAccountUsername { get; set; }
|
2024-11-06 14:56:02 +01:00
|
|
|
|
public string PatchAccountEmail { get; set; }
|
|
|
|
|
|
public string PatchAccountPassword { 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
|
|
|
|
}
|