12 lines
No EOL
273 B
C#
12 lines
No EOL
273 B
C#
using ProtoBuf;
|
|
using WingsAPI.Data.Character;
|
|
|
|
namespace WingsAPI.Communication.DbServer.CharacterService
|
|
{
|
|
[ProtoContract]
|
|
public class DbServerDeleteCharacterRequest
|
|
{
|
|
[ProtoMember(1)]
|
|
public CharacterDTO CharacterDto { get; set; }
|
|
}
|
|
} |