9 lines
246 B
C#
9 lines
246 B
C#
namespace Radium.DataExporter.Models.Common.Results;
|
|
|
|
public class CreateJobSessionResponse
|
|
{
|
|
public CompleteAuthLinkResult? Result { get; init; }
|
|
public RecNetError? Error { get; init; }
|
|
|
|
public bool IsSuccess => Result != null;
|
|
} |