17 lines
393 B
C#
17 lines
393 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Constant
|
|
{
|
|
public class CompanyName
|
|
{
|
|
public const string LLI = "LLI";
|
|
public const string MDLD = "MDLD";
|
|
public const string EUROPRINT = "EUROPRINT";
|
|
public const string Traders = "Traders";
|
|
}
|
|
}
|