DD.WellWorkover.Cloud/AsbCloudApp/Data/RequestLogUserDto.cs
2021-12-17 16:24:54 +05:00

17 lines
434 B
C#

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; }
}
}