laatzen/SPSLogger/Model/DataModel/Format.cs

22 lines
487 B
C#
Raw Normal View History

2024-10-15 09:36:17 +00:00
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; }
}
}