12 lines
292 B
C#
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>();
|
|
} |