14 lines
313 B
C#
14 lines
313 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace PT4Provider
|
|
{
|
|
public class Constants
|
|
{
|
|
public static string ResultsABCFileName = "results.abc";
|
|
public static string ResultsDATFileName = "results.dat";
|
|
public static string PT4UnitName = "pt4";
|
|
}
|
|
}
|