using Apimanager_backend.Models; namespace Apimanager_backend.Dtos { public class ApiInfoDto { public int Id { get; set; } public string Name { get; set; } public string Description { get; set; } public string Endpoint { get; set; } public ApiMethod Method { get; set; } public bool IsThirdParty { get; set; } public bool IsActive { get; set; } public Apipackage? Package { get; set; } public int? PackageId { get; set; } } }