using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CollaborativePlatformMain.DFEntity.MessageSubUtil { /// /// /// 文件名(File Name): LegendEntity.cs /// /// 描述(Description): 图例库数据实体类 /// /// 数据表(Tables): nothing /// /// 作者(Author): Ou Rui Song /// /// 日期(Create Date): 2024年4月29日15:56:25 /// /// 修改记录(Revision History): /// R1: /// 修改作者: /// 修改日期: /// 修改理由: /// /// public class LegendEntity { /// /// 图例库数据 /// /// /// public LegendEntity(string name, string imagePath) { Name = name; ImagePath = imagePath; } /// /// 文件夹名称 /// public string Name { get; set; } /// /// 地址 /// public string ImagePath { get; set; } } }