Untitled
unknown
plain_text
3 years ago
900 B
7
Indexable
/*Detta är Film-DTO*/
public class FilmDTO
{
public int Id { get; set; }
public string Title { get; set; }
public DateTime Released { get; set; }
public string ThumbnailURL { get; set; }
public bool Free { get; set; }
public string? Description { get; set; }
public string? FilmUrl { get; set; }
public int DirectorId { get; set; }
public string? Director { get; set; } //DirectorDTO???
public List<GenreDTO>? Genres { get; set; }
}
public class FilmCreateDTO
{
public int Id { get; set; }
public string Title { get; set; }
public DateTime Released { get; set; }
public string ThumbnailURL { get; set; }
public bool Free { get; set; }
public string? Description { get; set; }
public string? FilmUrl { get; set; }
public int DirectorId { get; set; }
}
public class FilmEditDTO : FilmCreateDTO
{
public int Id { get; set; }
}Editor is loading...