dotnet-cqrs/PoweredSoft.CQRS.AspNetCore.OData/QueryODataControllerOptions.cs
2021-02-05 13:06:34 -05:00

11 lines
229 B
C#

namespace PoweredSoft.CQRS.AspNetCore.Mvc
{
public class QueryODataControllerOptions
{
public bool FixODataSwagger { get; set; } = true;
public QueryODataControllerOptions()
{
}
}
}