using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model { public class Work { public string Id { get; set; } public string Description { get; set; } public string Title { get; set; } public List Subjects { get; set; } = new List(); public List Authors { get; set; } = new List(); public Ratings Ratings { get; set; } } }