28 lines
549 B
C#
28 lines
549 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|