2020-05-06 07:45:23 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2019-09-16 08:51:25 +00:00
|
|
|
|
namespace TBF.UI
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class Constants
|
|
|
|
|
|
{
|
|
|
|
|
|
public const int Dpi100pct = 96;
|
2020-03-05 12:59:43 +00:00
|
|
|
|
public const string DateFormat = "dd.MM.yyyy";
|
|
|
|
|
|
public const string DateTimeFormat = "dd.MM.yyyy HH:mm";
|
2021-01-13 11:57:56 +00:00
|
|
|
|
public static readonly DateTime MinDate = new DateTime(2016, 1, 1);
|
2021-08-18 06:52:34 +00:00
|
|
|
|
public static readonly DateTime MaxDate = new DateTime(2039, 12, 31);
|
2019-09-16 08:51:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|