using ProtoBuf; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Server.MyClass.Caches { [ProtoContract] public class DouyinUpdateCache { /// /// 最后更新时间 /// [global::ProtoBuf.ProtoMember(1)] public DateTime UpdateTime1 { get; set; } = DateTime.Now.AddDays(-30); } }