16 lines
375 B
C#
16 lines
375 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PARR.DAL.Contracts
|
|
{
|
|
public class AIHTITSettings
|
|
{
|
|
public const string RespAreaGroupName = "ResponsibleArea";
|
|
public const string StatusGroupName = "Status";
|
|
public const string Delimiters = "Delimiters";
|
|
}
|
|
}
|