15 lines
434 B
C#
15 lines
434 B
C#
using Kreta.Ellenorzo.Dto.VN.Documentation;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Kreta.Ellenorzo.Dto.VN.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Author: Kovács Kornél (DevKornél) Created On: 2019.05.
|
|
/// Az interface-t implementáló model a dokumentációban egy példaválasz fog adni
|
|
/// </summary>
|
|
public interface IDtoDocumentation
|
|
{
|
|
[JsonIgnore]
|
|
DocumentationExampleDto Example { get; }
|
|
}
|
|
}
|