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

18 lines
No EOL
406 B
C#

using ProtoBuf;
using WingsEmu.Packets.Enums.Relations;
namespace WingsAPI.Communication.Relation
{
[ProtoContract]
public class RelationRemoveRequest
{
[ProtoMember(1)]
public long CharacterId { get; set; }
[ProtoMember(2)]
public long TargetId { get; set; }
[ProtoMember(3)]
public CharacterRelationType RelationType { get; set; }
}
}