14 lines
No EOL
325 B
C#
14 lines
No EOL
325 B
C#
using System.Collections.Generic;
|
|
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Data.Families;
|
|
|
|
[ProtoContract]
|
|
public class FamilyUpgradeDto
|
|
{
|
|
[ProtoMember(1)]
|
|
public HashSet<int> UpgradesBought { get; set; } = new();
|
|
|
|
[ProtoMember(2)]
|
|
public Dictionary<FamilyUpgradeType, short> UpgradeValues { get; set; } = new();
|
|
} |