eDosStationFull/eDosStation/AppFormats.cs

17 lines
414 B
C#
Raw Permalink Normal View History

2026-08-18 12:15:26 +02:00
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";
}
}