15 lines
538 B
C#
15 lines
538 B
C#
namespace AIParkingApplication
|
|
{
|
|
public static class AppConstant
|
|
{
|
|
#region Application Messages
|
|
public const string APPLICATION_IS_RUNNNING = "AIParkingApplication: Ứng dụng đã chạy!";
|
|
public const string ERROR_TITLE = "Lỗi";
|
|
public const string DATETIME_FORMAT = "HH:mm:ss dd/MM/yyyy";
|
|
#endregion
|
|
|
|
public const string CAMERA_FAILED_IMAGE_PATH = @"Images\CantConnectCamera.jpg";
|
|
public const string DEFAULT_LOGO_IMAGE = @".\Images\ApplicationLogo.ico";
|
|
}
|
|
}
|