server-master/srcs/_plugins/WingsEmu.Plugins.DistributedGameEvents/Relation/RelationCharacterJoinMessage.cs
2026-02-10 18:21:30 +01:00

17 lines
No EOL
474 B
C#

using System.Collections.Generic;
using PhoenixLib.ServiceBus;
using PhoenixLib.ServiceBus.Routing;
using WingsEmu.DTOs.Relations;
namespace WingsEmu.Plugins.DistributedGameEvents.Relation
{
[MessageType("relation.character.join")]
public class RelationCharacterJoinMessage : IMessage
{
public long CharacterId { get; set; }
public string CharacterName { get; set; }
public List<CharacterRelationDTO> Relations { get; set; }
}
}