CommonResx.cs 434 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Collections;
  6. namespace Muchinfo.MTPClient.Resources
  7. {
  8. public class CommonResx
  9. {
  10. /// <summary>
  11. // /版本
  12. /// </summary>
  13. public ulong Version { get; set; }
  14. /// <summary>
  15. /// 资源内容
  16. /// </summary>
  17. public Hashtable ResourceHashtable { get; set; }
  18. }
  19. }