13 lines
322 B
C#
13 lines
322 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; }
|
||
|
||
// Navigation Property
|
||
public List<Measurement> Measurements { get; set; } = new List<Measurement>();
|
||
} |