Newer
Older
Correlator / Correlator / Model / ChildFolderModel.cs
namespace Correlator.Model
{
    public class ChildFolderModel
    {
        public string FolderType { set; get; }
        public string FolderName { set; get; }
        public string FullPath { set; get; }
        public string CreationTime { set; get; }
        public string ChildFileCount { set; get; }
    }
}