Y2S2-Syski/syski_api/uk.co.syski.data/SystemStorageData.cs
2020-06-09 21:02:14 +01:00

30 lines
555 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Syski.Data
{
public class SystemStorageData
{
public Guid SystemId { get; set; }
public System System { get; set; }
public float Time { get; set; }
public float Transfers { get; set; }
public float Reads { get; set; }
public float Writes { get; set; }
public float ByteReads { get; set; }
public float ByteWrites { get; set; }
public DateTime CollectionDateTime { get; set; }
}
}