using System; namespace AsbCloudApp.Data { public class RequestLogUserDto { public int UserId { 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; } public UserDto User { get; set; } } }