using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataModel { public class Format { [Key] public int ID { get; set; } public String Name { get; set; } public virtual Profile OnProfile { get; set; } public virtual ICollection ValueProperties { get; set; } } }