LegendEntity.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CollaborativePlatformMain.DFEntity.MessageSubUtil
  7. {
  8. /// <summary>
  9. ///
  10. /// <para>文件名(File Name): LegendEntity.cs</para>
  11. ///
  12. /// <para>描述(Description): 图例库数据实体类</para>
  13. ///
  14. /// <para>数据表(Tables): nothing</para>
  15. ///
  16. /// <para>作者(Author): Ou Rui Song</para>
  17. ///
  18. /// <para>日期(Create Date): 2024年4月29日15:56:25</para>
  19. ///
  20. /// 修改记录(Revision History):
  21. /// R1:
  22. /// 修改作者:
  23. /// 修改日期:
  24. /// 修改理由:
  25. ///
  26. /// </summary>
  27. public class LegendEntity
  28. {
  29. /// <summary>
  30. /// 图例库数据
  31. /// </summary>
  32. /// <param name="name"></param>
  33. /// <param name="imagePath"></param>
  34. public LegendEntity(string name, string imagePath)
  35. {
  36. Name = name;
  37. ImagePath = imagePath;
  38. }
  39. /// <summary>
  40. /// 文件夹名称
  41. /// </summary>
  42. public string Name { get; set; }
  43. /// <summary>
  44. /// 地址
  45. /// </summary>
  46. public string ImagePath { get; set; }
  47. }
  48. }