using System.Collections.Generic; using Common.Base; using MongoDB.Bson; namespace Model { public class UnitComponent: Component { public readonly Dictionary units = new Dictionary(); public readonly Dictionary> typeUnits = new Dictionary>(); } }