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

18 lines
No EOL
430 B
C#

using ProtoBuf;
using WingsEmu.DTOs.Relations;
namespace WingsAPI.Communication.Relation
{
[ProtoContract]
public class RelationAddResponse
{
[ProtoMember(1)]
public CharacterRelationDTO SenderRelation { get; set; }
[ProtoMember(2)]
public CharacterRelationDTO TargetRelation { get; set; }
[ProtoMember(3)]
public RpcResponseType ResponseType { get; set; }
}
}