using System;
namespace OTSIncAReportApp.DataOperation.Model
{
[Serializable]
public class RptConfigFile
{
///
/// 粒级表目录
///
public string FileFolderSize
{
get;
set;
}
///
/// 三元相图目录
///
public string FileFolderTrigTemp
{
get;
set;
}
///
/// 比例因子
///
public string Scale
{
get;
set;
}
///
/// 默认使用的粒级文件
///
public string PartSizeFile
{
get;
set;
}
///
/// 默认使用的三元相图模板文件
///
public string TriTempFile
{
get;
set;
}
}
}