Y2S2-Syski/syski_api/uk.co.syski.api/Models/StorageDataDTO.cs

27 lines
500 B
C#
Raw Normal View History

2020-06-09 20:02:14 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Syski.API.Models
{
public class StorageDataDTO
{
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; }
}
}