Record.cs 307 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace VEngine.Editor.Builds
  4. {
  5. [Serializable]
  6. public class Record
  7. {
  8. public string build;
  9. public int version;
  10. public long size;
  11. public long time;
  12. public List<string> files = new List<string>();
  13. }
  14. }