2ba8def9bb
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Has been cancelled
Quant Engine CI/CD Pipeline / validate-core (pull_request) Has been cancelled
Quant Engine CI/CD Pipeline / validate-ui-and-storage (pull_request) Has been cancelled
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (pull_request) Has been cancelled
16 lines
493 B
C#
16 lines
493 B
C#
using System;
|
|
|
|
namespace QuantEngine.Core.Models
|
|
{
|
|
public class CollectionSourceError
|
|
{
|
|
public string RunId { get; set; } = string.Empty;
|
|
public string? Ticker { get; set; }
|
|
public string SourceName { get; set; } = string.Empty;
|
|
public string ErrorKind { get; set; } = string.Empty;
|
|
public string ErrorMessage { get; set; } = string.Empty;
|
|
public string? PayloadJson { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|
|
}
|