ResourceBuilderController.VersionListData.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 loyalsoft. All rights reserved.
  4. // Homepage: http://www.game7000.com/
  5. // Feedback: http://www.game7000.com/
  6. //------------------------------------------------------------
  7. namespace UnityGameFramework.Editor.ResourceTools
  8. {
  9. public sealed partial class ResourceBuilderController
  10. {
  11. private sealed class VersionListData
  12. {
  13. public VersionListData(string path, int length, int hashCode, int compressedLength, int compressedHashCode)
  14. {
  15. Path = path;
  16. Length = length;
  17. HashCode = hashCode;
  18. CompressedLength = compressedLength;
  19. CompressedHashCode = compressedHashCode;
  20. }
  21. public string Path
  22. {
  23. get;
  24. private set;
  25. }
  26. public int Length
  27. {
  28. get;
  29. private set;
  30. }
  31. public int HashCode
  32. {
  33. get;
  34. private set;
  35. }
  36. public int CompressedLength
  37. {
  38. get;
  39. private set;
  40. }
  41. public int CompressedHashCode
  42. {
  43. get;
  44. private set;
  45. }
  46. }
  47. }
  48. }