10 lines
244 B
C#
10 lines
244 B
C#
using System;
|
|
namespace app.Share.Common
|
|
{
|
|
public class UserSelectCriterion : SelectCriterion
|
|
{
|
|
public string Name { get; set; }
|
|
public string DomainName { get; set; }
|
|
public string HostName { get; set; }
|
|
}
|
|
} |