14 lines
456 B
C#
14 lines
456 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";
|
|
}
|
|
}
|