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

29 lines
580 B
C#

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<ValueProperty> ValueProperties { get; set; }
}
}