Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Alexei000/313f06110f8367fcb5fd506bc83925f6 to your computer and use it in GitHub Desktop.
Save Alexei000/313f06110f8367fcb5fd506bc83925f6 to your computer and use it in GitHub Desktop.
Test result service model
public class ImportingSystemTestResultOutputServiceModel
{
public int ModelIndex { get; set; }
public int ImportingSystemTestResultId { get; set; }
public DateTime EnteredTimestamp { get; set; }
public DateTime RunTimestamp { get; set; }
public int ImportingSystemTestId { get; set; }
public int ImportingSystemId { get; set; }
public int RequesterId { get; set; }
public int ImportingSystemTestExecutionStatusId { get; set; }
public string ErrorMessage { get; set; }
public string ResultFilename { get; set; }
public Guid RequestId { get; set; }
public int RunSessionNo { get; set; }
public int? DurationMs { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment