UserPage created

This commit is contained in:
2024-10-28 00:35:32 +01:00
Unverified
parent b53f907310
commit 017b3ac185
28 changed files with 145 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
namespace WatchIt.Website.Services.Configuration.Model;
public class Endpoints
{
public string Base { get; set; }
public Accounts Accounts { get; set; }
public Genders Genders { get; set; }
public Genres Genres { get; set; }
public Media Media { get; set; }
public Movies Movies { get; set; }
public Series Series { get; set; }
public Photos Photos { get; set; }
public Persons Persons { get; set; }
public Roles Roles { get; set; }
}