using System; namespace TBF.UI { public static class Constants { public const int Dpi100pct = 96; public const string DateFormat = "dd.MM.yyyy"; public const string DateTimeFormat = "dd.MM.yyyy HH:mm"; public static readonly DateTime MinDate = new DateTime(2016, 1, 1); public static readonly DateTime MaxDate = new DateTime(2039, 12, 31); } }