2024-07-03 22:18:32 +02:00
|
|
|
|
namespace WatchIt.Website.Services.Utility.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; }
|
2024-07-30 16:19:51 +02:00
|
|
|
|
public string Logout { get; set; }
|
|
|
|
|
|
public string GetProfilePicture { get; set; }
|
2024-07-03 22:18:32 +02:00
|
|
|
|
}
|