// 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.AspNetCore.Mvc.Rendering
{
///
/// Controls the value-rendering method For HTML5 input elements of types such as date, time, datetime and
/// datetime-local.
///
public enum Html5DateRenderingMode
{
///
/// Render date and time values as Rfc3339 compliant strings to support HTML5 date and time types of input
/// elements.
///
Rfc3339 = 0,
///
/// Render date and time values according to the current culture's ToString behavior.
///
CurrentCulture,
}
}