// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNet.Mvc.Razor
{
///
/// Specifies the localized view format for .
///
public enum LanguageViewLocationExpanderFormat
{
///
/// Locale is a subfolder under which the view exists.
///
///
/// Home/Views/en-US/Index.chtml
///
SubFolder,
///
/// Locale is part of the view name as a suffix.
///
///
/// Home/Views/Index.en-US.chtml
///
Suffix
}
}