21 lines
439 B
C#
21 lines
439 B
C#
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; }
|
|
|
|
public int EsppId { get; set; }
|
|
|
|
public Guid TnkId { get; set; }
|
|
}
|
|
|
|
public class WorkWithTnkResponse : WorkResponse
|
|
{
|
|
public TnkWithSubprocessResponse? Tnk { get; set; }
|
|
}
|
|
}
|