Files
cms_thermo_active/Step.Model/DTOModels/JobModels/DTOJobModel.cs
T
Lucio Maranta adfafcabd4 Library refactor, divided model by type
Added read/update metadata to the cms client
2018-09-27 17:30:37 +02:00

17 lines
351 B
C#

using System;
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();
}
}
}