16 lines
494 B
C#
16 lines
494 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 NemLetezoEntitasExample : EllenorzoExceptionResponseDto, IExamplesProvider
|
|
{
|
|
public NemLetezoEntitasExample() : base(BlExceptionType.NemLetezoEntitas, BlExceptionType.NemLetezoEntitas.ToDisplayName())
|
|
{
|
|
}
|
|
|
|
public object GetExamples() => new NemLetezoEntitasExample();
|
|
}
|
|
}
|