23 lines
531 B
C#
23 lines
531 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CMS_CORE_Library.Models
|
|
{
|
|
public class ThermoModels
|
|
{
|
|
/// <summary>
|
|
/// Represents thermo gauge data
|
|
/// </summary>
|
|
public class GaugeModel
|
|
{
|
|
public uint TimeAdv { get; set; } = 0;
|
|
public int Power { get; set; } = 0;
|
|
public int Vacuum { get; set; } = 0;
|
|
public int Air { get; set; } = 0;
|
|
}
|
|
}
|
|
}
|