11 lines
287 B
C#
11 lines
287 B
C#
|
using System;
|
||
|
namespace app.Share.Common
|
||
|
{
|
||
|
public class HostSelectCriterion : SelectCriterion
|
||
|
{
|
||
|
public string Name { get; set; }
|
||
|
public int[] IPAddress { get; set; }
|
||
|
public string DomainName { get; set; }
|
||
|
public string OSName { get; set; }
|
||
|
}
|
||
|
}
|