BackupFiles.cs 383 B

12345678910111213141516
  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 FullPath { get; set; }
  11. public string BackupFullPath { get; set; }
  12. public long Size { get; set; }
  13. public string UpdateTime { get; set; }
  14. }
  15. }