19 lines
467 B
C#
19 lines
467 B
C#
using AyCode.Core.Consts;
|
|
|
|
namespace TIAM.Core.Consts;
|
|
|
|
public static class TiamConstClient
|
|
{
|
|
public static Guid TransferProductId = Guid.Parse("814b5495-c2e9-4f1d-a73f-37cd5d353078");
|
|
}
|
|
|
|
public class TiamConst : AcConst
|
|
{
|
|
public static string ProjectIdString = "684f34d1-163a-4077-918f-a9d9df5ce789";
|
|
|
|
static TiamConst()
|
|
{
|
|
ProjectId = Guid.Parse(ProjectIdString);
|
|
ProjectSalt = GenerateProjectSalt(ProjectId.ToString("N"));
|
|
}
|
|
} |