using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AsbCloudApp.Data { public class RequestLogUserDto { public int Id { get; set; } public string Login { get; set; } public string Ip { get; set; } public long ElapsedMs { get; set; } public DateTime LastDate { get; set; } public long Requests { get; set; } public long Errors { get; set; } } }