13 lines
296 B
C#
13 lines
296 B
C#
|
namespace CelticCalendarCalculator.Model.Constants {
|
|||
|
internal class IcaConstants {
|
|||
|
|
|||
|
public const string offset = "TZOFFSETTO";
|
|||
|
public const string offsetfrom = "TZOFFSETFROM";
|
|||
|
|
|||
|
public const string prefix = ":";
|
|||
|
|
|||
|
public const string postfix = "00";
|
|||
|
|
|||
|
}
|
|||
|
}
|