17 lines
414 B
C#
17 lines
414 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace eDosStation
|
|||
|
|
{
|
|||
|
|
public static class AppFormats
|
|||
|
|
{
|
|||
|
|
public const string DoseFormat = "{0:0.00} µSv";
|
|||
|
|
public const string DoseFormatPeak = "{0:0.00} µSv {1:yyyy-MM-dd HH:mm}";
|
|||
|
|
public const string Yes = "Yes";
|
|||
|
|
public const string No = "No";
|
|||
|
|
}
|
|||
|
|
}
|