29 lines
558 B
C#
29 lines
558 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IRaCIS.Core.Application.Auth
|
|
{
|
|
|
|
|
|
public static class IRaCISPolicy
|
|
{
|
|
public const string PMAndAPM = "PMAndAPM";
|
|
|
|
public const string PM_APM_CRC = "PMAndAPMAndCRC";
|
|
|
|
public const string CRC_IQC = "CRC_IQC";
|
|
|
|
public const string CRC = "CRC";
|
|
|
|
public const string PM = "PM";
|
|
|
|
public const string IQC = "IQC";
|
|
|
|
public const string SPMAndCPM = "SPMAndCPM";
|
|
|
|
}
|
|
}
|