COA.EnterpriseServices/COA.EnterpriseServices.DataAccess.QuickBase/QuickBaseRecordContext.cs

11 lines
292 B
C#
Raw Normal View History

2020-10-16 00:47:32 +00:00
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>();
}
}