11 lines
308 B
C#
11 lines
308 B
C#
using System;
|
|
namespace app.Share.Common
|
|
{
|
|
public class LoginSelectCriterion : SelectCriterion
|
|
{
|
|
public DateTimeOffset? TimeFrom { get; set; }
|
|
public DateTimeOffset? TimeTo { get; set; }
|
|
public string HostName { get; set; }
|
|
public string UserName { get; set; }
|
|
}
|
|
} |