using System.Collections.Generic; namespace COA.EnterpriseServices.DataAccess.QuickBase { /// /// Represents record data to be used in the QuickBase API /// internal class Record { internal string Table { get; set; } internal IDictionary FieldIds { get; set; } = new Dictionary(); } }