using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Mirea.Api.Endpoint.Models; using System; namespace Mirea.Api.Endpoint.Common.Extensions; [AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = true)] public class NotFoundResponseAttribute() : ProducesResponseTypeAttribute(typeof(ErrorResponseVm), StatusCodes.Status404NotFound);