using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Oreo.FileMan.Models
{
public class BackupFiles
{
public int Id { get; set; }
///
/// 原路径
///
public string FullPath { get; set; }
///
/// 备份路径
///
public string BackupFullPath { get; set; }
///
/// 文件大小
///
public long Size { get; set; }
///
/// 备份时间
///
public string BackupTime { get; set; }
///
/// 最后修改时间
///
public string LastWriteTime { get; set; }
///
/// Md5
///
public string Md5 { get; set; }
}
}