using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Newtonsoft.Json; namespace MusicStore.Models { public class Genre { public Genre() { Albums = new List(); } public int GenreId { get; set; } [Required] public string Name { get; set; } public string Description { get; set; } [JsonIgnore] public virtual ICollection Albums { get; set; } } }