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 Measurements { get; set; } = new List(); }