using System.Collections.Generic; using ProtoBuf; namespace WingsAPI.Data.Families; [ProtoContract] public class FamilyUpgradeDto { [ProtoMember(1)] public HashSet UpgradesBought { get; set; } = new(); [ProtoMember(2)] public Dictionary UpgradeValues { get; set; } = new(); }