2023-08-04 10:40:09 +07:00
|
|
|
|
namespace BMA.EHR.Domain.Shared
|
|
|
|
|
|
{
|
|
|
|
|
|
public class GlobalConstants
|
|
|
|
|
|
{
|
2023-08-04 11:59:02 +07:00
|
|
|
|
public static readonly string TYPE_ATTACHMENT = "attachment";
|
2023-08-04 10:40:09 +07:00
|
|
|
|
public static readonly string TYPE_COVER = "cover";
|
2023-08-20 12:00:14 +07:00
|
|
|
|
|
|
|
|
|
|
public static readonly string EXPORT_PDF = "PDF";
|
|
|
|
|
|
public static readonly string EXPORT_WORD = "DOCX";
|
|
|
|
|
|
public static readonly string EXPORT_EXCEL = "XLSX";
|
2023-08-04 10:40:09 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|