server-master/srcs/WingsAPI.Communication/Families/FamilyInvitation.cs
2026-02-10 18:21:30 +01:00

17 lines
No EOL
343 B
C#

using ProtoBuf;
namespace WingsAPI.Communication.Families
{
[ProtoContract]
public class FamilyInvitation
{
[ProtoMember(1)]
public long SenderId { get; set; }
[ProtoMember(2)]
public long SenderFamilyId { get; set; }
[ProtoMember(3)]
public long TargetId { get; set; }
}
}