using System.Collections.Generic; namespace COA.EnterpriseServices.DataAccess.QuickBase { internal class QuickBaseRecordContext { internal string Table { get; set; } internal IDictionary FieldIds { get; set; } = new Dictionary(); } }