// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore;
using Microsoft.AspNetCore.Http;
// ReSharper disable once CheckNamespace
namespace Microsoft.AspNetCore.Builder
{
///
/// Options for the .
///
public class MigrationsEndPointOptions
{
///
/// The default value for .
///
public static PathString DefaultPath = new PathString("/ApplyDatabaseMigrations");
///
/// Gets or sets the path that the will listen
/// for requests to execute migrations commands.
///
public virtual PathString Path { get; set; } = DefaultPath;
}
}