using System; using System.Collections.Generic; namespace MyMoviesWPF { public partial class Movie { public Movie() { Catalogs = new HashSet(); Orders = new HashSet(); } public int Idmovie { get; set; } public int? Idgenre { get; set; } public string Name { get; set; } = null!; public DateTime? ProductYear { get; set; } public string? Languages { get; set; } public int? IdactorList { get; set; } public string? Description { get; set; } public decimal Price { get; set; } public string? Trailer { get; set; } public string? Image { get; set; } public string? Full { get; set; } public virtual Genre? IdgenreNavigation { get; set; } public virtual ICollection Catalogs { get; set; } public virtual ICollection Orders { get; set; } } }