using System.Collections.Generic;
public int Id { get; set; }
public string Name { get; set; }
public List<Movie> Movies { get; set; } = new List<Movie>();
public int Id { get; set; }
public string Title { get; set; }
public string Director { get; set; }
public DateOnly ReleaseDate { get; set; }
public int GenreId { get; set; }
public Genre Genre { get; set; }