This removes enpoints where you can CRUD only RouteAddress database table and refines those where you can CRUD both Route and RouteAddress
13 lines
285 B
C#
13 lines
285 B
C#
namespace SharedModels.QueryParameters.Objects;
|
|
|
|
public class RouteParameters : ParametersBase
|
|
{
|
|
public const string DefaultFields = "id,type,routeAddresses";
|
|
|
|
public RouteParameters()
|
|
{
|
|
Fields = DefaultFields;
|
|
}
|
|
|
|
public string? Type { get; set; }
|
|
} |