forked from ddrilling/AsbCloudServer
17 lines
434 B
C#
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; }
|
|
}
|
|
}
|