laatzen/SPSLogger/Model/DataModel/ExposedSpsVariable.cs
Roland Drabesch 41ad02fd5c Add SPSLogger
2024-10-15 11:36:17 +02:00

20 lines
378 B
C#

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; }
}
}