13 lines
322 B
C#
13 lines
322 B
C#
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);
|
|
}
|
|
}
|