Files

14 lines
449 B
C#
Raw Normal View History

2024-07-03 22:18:32 +02:00
namespace WatchIt.Website.Services.Utility.Configuration.Model;
public class Endpoints
{
public string Base { get; set; }
public Accounts Accounts { get; set; }
2024-10-05 09:12:28 +02:00
public Genders Genders { get; set; }
2024-07-03 22:18:32 +02:00
public Genres Genres { get; set; }
public Media Media { get; set; }
public Movies Movies { get; set; }
public Series Series { get; set; }
2024-09-25 22:11:28 +02:00
public Photos Photos { get; set; }
2024-10-03 16:18:17 +02:00
public Persons Persons { get; set; }
2024-07-03 22:18:32 +02:00
}