Files
2026-05-25 17:21:51 -07:00

10 lines
385 B
C#

using System.Text.Json.Serialization;
namespace Radium.DataExporter.Models.Common.Results;
public class CompleteAuthLinkResult
{
[JsonPropertyName(name: "jobId")] public Guid JobId { get; set; }
[JsonPropertyName(name: "recNetUserId")] public long RecNetUserId { get; set; }
[JsonPropertyName(name: "resumedExistingJob")] public bool ResumedExistingJob { get; set; }
}