Files
juipnet/Infrastructure/ServiceClient/MsgCenterClient/WechatMpTplMsg/DataItem.cs

28 lines
549 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
namespace MsgCenterClient.WechatMpTplMsg
{
public class DataItem
{
public string Value { get; set; } = "";
//
// 摘要:
// 16进制颜色代码#FF0000
public string Color { get; set; } = "#173177";
public DataItem()
{
}
public DataItem(string value)
{
Value = value;
}
public DataItem(string value, string color)
{
Value = value;
Color = color;
}
}
}