忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,28 +0,0 @@
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;
}
}
}