using System; using System.ComponentModel.DataAnnotations; namespace DataModel { public class ValueProperty { [Key] public int ID { get; set; } public String SPSName { get; set; } public String DisplayName { get; set; } public Profile profile { get; set; } public virtual LogTrigger Trigger { get; set; } } }