14261c8e29
Add the function to change player name
13 lines
230 B
C#
13 lines
230 B
C#
using ProtoBuf;
|
|
|
|
namespace SharedProject.models;
|
|
|
|
[ProtoContract]
|
|
public class Navigators
|
|
{
|
|
[ProtoMember(1)]
|
|
public int Count { get; set; }
|
|
|
|
[ProtoMember(2)]
|
|
public List<Navigator>? NavigatorList { get; set; }
|
|
} |