11 lines
292 B
C#
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>();
|
|||
|
}
|
|||
|
}
|