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