Genesis Game Client Project Setup
This commit is contained in:
18
Assets/02_Scripts/Network/DTOs/PlayableCharacterDTO.cs
Normal file
18
Assets/02_Scripts/Network/DTOs/PlayableCharacterDTO.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Game.Network.DTO
|
||||
{
|
||||
[Serializable]
|
||||
public class PlayableCharacterDTO
|
||||
{
|
||||
[JsonProperty("characterCode")]
|
||||
public string characterCode;
|
||||
|
||||
[JsonProperty("characterType")]
|
||||
public string characterType;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user