server-master/srcs/WingsAPI.Communication/DbServer/CharacterService/DbServerGetCharacterResponse.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
358 B
C#

using ProtoBuf;
using WingsAPI.Data.Character;
namespace WingsAPI.Communication.DbServer.CharacterService
{
[ProtoContract]
public class DbServerGetCharacterResponse
{
[ProtoMember(1)]
public RpcResponseType RpcResponseType { get; set; }
[ProtoMember(2)]
public CharacterDTO CharacterDto { get; set; }
}
}