Files

11 lines
357 B
C#
Raw Normal View History

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; }
public string Logout { get; set; }
public string GetProfilePicture { get; set; }
2024-07-03 22:18:32 +02:00
}