IoT-Linq/Iot/Entities/MeasurementType.cs

12 lines
292 B
C#

namespace Iot.Entities;
using System.Collections.Generic;
public class MeasurementType
{
public int Id { get; set; }
public string Name { get; set; }
public string Comment { get; set; }
public List<Measurement> Measurements { get; set; } = new List<Measurement>();
}