Files
cms_thermo_active/Step.Model/DTOModels/DTONetworkMonitor.cs
T
2019-01-08 10:03:56 +01:00

16 lines
348 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.Model.DTOModels
{
public class DTONetworkMonitorModel
{
public string Name { get; set; }
public double Bandwidth { get; set; }
public double Value { get; set; }
}
}