16 lines
327 B
C#
16 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pit.Application.Scheduler
|
|
{
|
|
public class JobRuntimeInfo
|
|
{
|
|
public AppDomain AppDomain;
|
|
public BaseJob Job { get; set; }
|
|
public JobInfo JobModel { get; set; }
|
|
}
|
|
}
|