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

28 lines
549 B
C#
Raw Normal View History

2020-12-28 14:55:48 +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;
}
}
2020-10-07 20:25:03 +08:00
}