Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/GatheringInfo.cs
2024-09-12 00:35:31 -04:00

10 lines
182 B
C#

using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class GatheringInfo
{
[Key("has_invite")]
public int HasInvite { get; set; }
}