Files
parr_api/PARR.API/Contracts/V1/Responses/WorkResponse.cs

21 lines
439 B
C#
Raw Normal View History

2023-09-19 16:55:56 +10:00
namespace PARR.API.Contracts.V1.Responses
{
public class WorkResponse
{
public Guid Id { get; set; }
public required string Name { get; set; }
public string? TemplateSuffix { get; set; }
2023-09-19 16:55:56 +10:00
public int EsppId { get; set; }
public Guid TnkId { get; set; }
}
public class WorkWithTnkResponse : WorkResponse
{
public TnkWithSubprocessResponse? Tnk { get; set; }
}
2023-09-19 16:55:56 +10:00
}