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

22 lines
487 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModel
{
public class Format
{
[Key]
public int ID { get; set; }
public String Name { get; set; }
public virtual Profile OnProfile { get; set; }
public virtual ICollection<ValueProperty> ValueProperties { get; set; }
}
}