add missed dto/enbdpoints
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
namespace PyroFetes.DTO.CustomerType.Request;
|
||||
|
||||
public class CreateCustomerTypeDto
|
||||
{
|
||||
public string? Label { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace PyroFetes.DTO.CustomerType.Request;
|
||||
|
||||
public class GetCustomerTypeRequest
|
||||
{
|
||||
public int Id { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace PyroFetes.DTO.CustomerType.Request;
|
||||
|
||||
public class UpdateCustomerTypeDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? Label { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace PyroFetes.DTO.CustomerType.Response;
|
||||
|
||||
public class GetCustomerTypeDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string? Label { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user