16 lines
464 B
C#
16 lines
464 B
C#
using Kreta.Core;
|
|
using Kreta.Core.Enum;
|
|
using Kreta.Ellenorzo.Dto.VN.Exception;
|
|
using Swashbuckle.Examples;
|
|
|
|
namespace Kreta.Ellenorzo.WebApi.VN.Documentation
|
|
{
|
|
public class IsmeretlenHibaExample : EllenorzoExceptionResponseDto, IExamplesProvider
|
|
{
|
|
public IsmeretlenHibaExample() : base(BlExceptionType.None, BlExceptionType.None.ToDisplayName())
|
|
{
|
|
}
|
|
|
|
public object GetExamples() => new IsmeretlenHibaExample();
|
|
}
|
|
}
|