mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-02-05 05:19:49 +08:00
添加项目文件。
This commit is contained in:
35
CoreCms.Net.WeChat.Service/Models/WaterMark.cs
Normal file
35
CoreCms.Net.WeChat.Service/Models/WaterMark.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
/***********************************************************************
|
||||
* Project: CoreCms
|
||||
* ProjectName: 核心内容管理系统
|
||||
* Web: https://www.corecms.net
|
||||
* Author: 大灰灰
|
||||
* Email: jianweie@163.com
|
||||
* CreateTime: 2021/7/29 1:09:19
|
||||
* Description: 暂无
|
||||
***********************************************************************/
|
||||
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using CoreCms.Net.WeChat.Service.Utilities;
|
||||
|
||||
namespace CoreCms.Net.WeChat.Service.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// 水印
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class Watermark
|
||||
{
|
||||
public string appid { get; set; }
|
||||
public long timestamp { get; set; }
|
||||
|
||||
public DateTimeOffset DateTimeStamp
|
||||
{
|
||||
get { return DateTimeHelper.GetDateTimeFromXml(timestamp); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user