Y2S2-Syski/syski_api/uk.co.syski.data/SystemStorageData.cs

30 lines
555 B
C#
Raw Normal View History

2020-06-09 20:02:14 +00:00
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; }
}
}