Files

29 lines
1.3 KiB
C#
Raw Normal View History

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; }
public string Logout { get; set; }
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 16:29:24 +01:00
public string GetAccounts { get; set; }
2024-11-06 15:52:26 +01:00
public string GetAccount { get; set; }
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; }
public string GetAccountRatedMovies { get; set; }
public string GetAccountRatedSeries { get; set; }
2024-11-01 20:44:01 +01:00
public string GetAccountRatedPersons { get; set; }
2024-11-10 14:33:41 +01:00
public string GetAccountFollows { get; set; }
public string GetAccountFollowers { get; set; }
public string PostAccountFollow { get; set; }
public string DeleteAccountFollow { get; set; }
2024-07-03 22:18:32 +02:00
}