18 lines
549 B
C#
18 lines
549 B
C#
namespace PARR.BLL.Domain.Mq
|
|
{
|
|
/// <summary>
|
|
/// Модель в MQ, данные из АИХИТ
|
|
/// </summary>
|
|
public class AihitDataMq
|
|
{
|
|
public required string EK { get; set; }
|
|
public string? IP { get; set; }
|
|
public string? DBType { get; set; }
|
|
public string? APPType { get; set; }
|
|
public string? OSType { get; set; }
|
|
public string? WorkGroup { get; set; }
|
|
public required string Status { get; set; }
|
|
public required string ResponseArea { get; set; }
|
|
}
|
|
}
|