21 lines
457 B
C#
21 lines
457 B
C#
namespace PARR.API.Contracts.V1.Responses
|
|
{
|
|
public class TnkResponse
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public required string Name { get; set; }
|
|
|
|
public string? ShortName { get; set; }
|
|
|
|
public int? EsppId { get; set; }
|
|
|
|
public Guid SubprocessId { get; set; }
|
|
}
|
|
|
|
public class TnkWithSubprocessResponse : TnkResponse
|
|
{
|
|
public SubprocessWithProcessResponse? Subprocess { get; set; }
|
|
}
|
|
}
|