10 lines
182 B
C#
10 lines
182 B
C#
using MessagePack;
|
|
|
|
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
|
|
|
[MessagePackObject]
|
|
public class GatheringInfo
|
|
{
|
|
[Key("has_invite")]
|
|
public int HasInvite { get; set; }
|
|
} |