remove TransactionId from base entity

This commit is contained in:
Ryan Peters 2021-04-22 13:45:56 -04:00
parent a6afc6eb58
commit 67fdec9009

View File

@ -1,7 +1,5 @@
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace Salesforce.NET.Entities
{
@ -19,11 +17,6 @@ namespace Salesforce.NET.Entities
[JsonProperty("id")]
public string RecordId { get; set; }
/// <summary>
/// Used to correlate a record insert to a batch
/// </summary>
[QueryIgnore]
public int TransactionId { get; set; }
[QueryIgnore]
public RecordAttributes Attributes { get; set; }