16 lines
285 B
C#
16 lines
285 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Models {
|
|
[Serializable]
|
|
public class PressureTest {
|
|
|
|
bool bestanden;
|
|
|
|
public int Id { get; set; }
|
|
|
|
public List<MeasureData> Measuredatas { get; set; }
|
|
}
|
|
}
|