22 lines
504 B
C#
22 lines
504 B
C#
namespace PARR.API.Contracts.V1.Responses
|
|
{
|
|
public class WorkResponse
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public required string Name { get; set; }
|
|
|
|
public int EsppId { get; set; }
|
|
|
|
public Guid TnkId { get; set; }
|
|
|
|
public required string TemplateDuration { get; set; }
|
|
|
|
public required string ShortDescription { get; set; }
|
|
|
|
public required string FullDescription { get; set; }
|
|
|
|
public required string Solution { get; set; }
|
|
}
|
|
}
|