COA.EnterpriseServices/COA.EnterpriseServices.DataAccess.QuickBase/Record.cs

14 lines
376 B
C#
Raw Permalink Normal View History

2020-10-16 00:47:32 +00:00
using System.Collections.Generic;
namespace COA.EnterpriseServices.DataAccess.QuickBase
{
2020-10-16 02:03:30 +00:00
/// <summary>
/// Represents record data to be used in the QuickBase API
/// </summary>
internal class Record
2020-10-16 00:47:32 +00:00
{
internal string Table { get; set; }
internal IDictionary<int, object> FieldIds { get; set; } = new Dictionary<int, object>();
}
}