13a143957f
WIP Job backend
22 lines
454 B
C#
22 lines
454 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Step.Model.DTOModels.JobModels
|
|
{
|
|
public class DTOJobModel
|
|
{
|
|
public string Name;
|
|
public DateTime LastEditTimestamp;
|
|
public string IsoMainProgram;
|
|
public DTOMetadataModel Metadata;
|
|
|
|
public DTOJobModel()
|
|
{
|
|
Metadata = new DTOMetadataModel();
|
|
}
|
|
}
|
|
}
|