24 lines
598 B
C#
24 lines
598 B
C#
namespace PARR.API.Contracts.V1.Requests
|
|
{
|
|
public class JobRequest
|
|
{
|
|
public required Guid TnkId { get; set; }
|
|
|
|
public required Guid GroupId { get; set; }
|
|
|
|
public required string Name { get; set; }
|
|
|
|
public int? MinValueRelationships { get; set; }
|
|
|
|
public int? MaxValueRelationships { get; set; }
|
|
|
|
public bool? isParentRelationships { get; set; }
|
|
|
|
public required string TemplateNameMask { get; set; }
|
|
|
|
public required string WorkGroupMask { get; set; }
|
|
|
|
public required string WorkName { get; set; }
|
|
}
|
|
}
|