23 lines
463 B
C#
23 lines
463 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|