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