mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
9 lines
215 B
C#
9 lines
215 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CleanArchitecture.Api.Swagger;
|
|
|
|
public abstract class SwaggerSortableFieldsAttribute : Attribute
|
|
{
|
|
public abstract IEnumerable<string> GetFields();
|
|
} |