yz_server/Server/MyClass/Class/InitDbData.cs

23 lines
463 B
C#
Raw Permalink Normal View History

2022-04-16 07:48:12 +00:00
using ProtoBuf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Server.MyClass.Class
{
/// <summary>
/// 记录初始化表数据
/// </summary>
[ProtoContract]
public class InitDbData
{
/// <summary>
/// 上次计算的MD5
/// </summary>
[global::ProtoBuf.ProtoMember(1)]
public string LastMd5 { get; set; }
}
}