using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel.DataAnnotations; namespace DataModel { public class ExposedSpsVariable { [Key] public int ID { get; set; } public string SpsVarName { get; set; } public bool Visible { get; set; } } }