15 lines
346 B
C#
15 lines
346 B
C#
using Apimanager_backend.Models;
|
|
|
|
namespace Apimanager_backend.Dtos
|
|
{
|
|
public class UpdateApiDto
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? Endpoint { get; set; }
|
|
public ApiMethod? Method { get; set; }
|
|
public int? PackageId { get; set; }
|
|
|
|
}
|
|
}
|