Files

16 lines
606 B
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 GetProfilePicture { get; set; }
public string GetAccountInfo { get; set; }
public string PutAccountInfo { 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-07-03 22:18:32 +02:00
}