using System;
using System.Collections.Generic;
namespace OTSIncAReportApp.DataOperation.Model
{
[Serializable]
public class ResultFile
{
///
/// FileId
///
public string FileId
{
get;
set;
}
///
/// FileName
///
public string FileName
{
get;
set;
}
///
/// FilePath
///
public string FilePath
{
get;
set;
}
///
/// ResuitInfo
///
public Dictionary ResultInfo
{
get;
set;
}
}
}