21 lines
701 B
C#
21 lines
701 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
|
|||
|
{
|
|||
|
public partial class RunningJob
|
|||
|
{
|
|||
|
public string JobId { get; set; } = null!;
|
|||
|
public DateTime StartDate { get; set; }
|
|||
|
public string ComputerName { get; set; } = null!;
|
|||
|
public string RequestName { get; set; } = null!;
|
|||
|
public string RequestPath { get; set; } = null!;
|
|||
|
public Guid UserId { get; set; }
|
|||
|
public string? Description { get; set; }
|
|||
|
public int Timeout { get; set; }
|
|||
|
public short JobAction { get; set; }
|
|||
|
public short JobType { get; set; }
|
|||
|
public short JobStatus { get; set; }
|
|||
|
}
|
|||
|
}
|