2022-07-07 15:46:17 +02:00
|
|
|
|
using ProtoBuf;
|
2022-07-05 18:52:38 +02:00
|
|
|
|
|
2022-07-07 15:46:17 +02:00
|
|
|
|
namespace SharedProject.models;
|
|
|
|
|
|
|
|
|
|
[ProtoContract]
|
2022-07-05 18:52:38 +02:00
|
|
|
|
public class Navigators
|
|
|
|
|
{
|
2022-07-07 15:46:17 +02:00
|
|
|
|
[ProtoMember(1)]
|
2022-07-05 18:52:38 +02:00
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
|
2022-07-07 15:46:17 +02:00
|
|
|
|
[ProtoMember(2)]
|
2022-07-05 18:52:38 +02:00
|
|
|
|
public List<Navigator>? NavigatorList { get; set; }
|
|
|
|
|
}
|