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