| 12345678910111213141516171819 |
- 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 Name { get; set; }
- public string Path { get; set; }
- public string FullPath { get; set; }
- public string BackupName { get; set; }
- public string BackupFullPath { get; set; }
- public long Size { get; set; }
- public string UpdateTime { get; set; }
- }
- }
|