BackupFiles.cs 513 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Oreo.FileMan.Models
  6. {
  7. public class BackupFiles
  8. {
  9. public int Id { get; set; }
  10. public string Name { get; set; }
  11. public string Path { get; set; }
  12. public string FullPath { get; set; }
  13. public string BackupName { get; set; }
  14. public string BackupFullPath { get; set; }
  15. public long Size { get; set; }
  16. public string UpdateTime { get; set; }
  17. }
  18. }