This repository has been archived on 2024-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
Salesforce.NET/ErrorCollectionResponse.cs
2021-04-20 18:10:07 -04:00

18 lines
428 B
C#

using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace Salesforce.NET
{
public class ErrorCollectionResponse : Collection<ErrorResponse>, IApiResponse
{
public bool Success => false;
}
public class ErrorResponse
{
public string Message { get; set; }
public string ErrorCode { get; set; }
public ICollection<string> Fields { get; set; }
}
}