COA.EnterpriseServices/COA.EnterpriseServices.DataAccess.QuickBase/QuickBaseRecordContext.cs
2020-10-15 20:47:32 -04:00

11 lines
292 B
C#

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