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