13 lines
330 B
C#
13 lines
330 B
C#
namespace Adaptation.FileHandlers.pcl;
|
|
|
|
internal class Constant
|
|
{
|
|
|
|
public string Id { get; } = "ID#";
|
|
public string Max { get; } = "Max:";
|
|
public string Min { get; } = "Min:";
|
|
public string Date { get; } = "Date:";
|
|
public string StdDev { get; } = "Std Dev:";
|
|
public string Average { get; } = "Average:";
|
|
|
|
} |