Files
FreeSR/FreeSR.Proto/GetTutorialScRsp.cs
2024-01-27 21:06:07 +08:00

13 lines
195 B
C#

namespace FreeSR.Proto
{
using ProtoBuf;
[ProtoContract]
public class GetTutorialScRsp
{
[ProtoMember(7)] public List<Tutorial> TutorialList;
[ProtoMember(15)] public int Retcode;
}
}