dotnet-cqrs/PoweredSoft.CQRS.AspNetCore.OData/QueryODataControllerOptions.cs

11 lines
229 B
C#
Raw Normal View History

2021-02-05 13:06:34 -05:00
namespace PoweredSoft.CQRS.AspNetCore.Mvc
{
public class QueryODataControllerOptions
{
public bool FixODataSwagger { get; set; } = true;
public QueryODataControllerOptions()
{
}
}
}