using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace DataModel { public class Profile { [Key] public int ID { get; set; } public String Name { get; set; } public String User { get; set; } public String Description { get; set; } public bool isActive { get; set; } public String OutputPath { get; set; } public virtual Format LogFormat { get; set; } public virtual ICollection ValueProperties { get; set; } } }