Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Framework.Models.DataTables;
///
/// Represents date render for DataTables column
///
public partial class RenderDate : IRender
{
#region Constants
///
/// Default date format
///
/// For example english culture: [MM/DD/YYYY h:mm:ss PM/AM] [09/04/1986 8:30:25 PM]
protected const string DEFAULT_DATE_FORMAT = "L LTS";
#endregion
#region Ctor
public RenderDate()
{
//set default values
Format = DEFAULT_DATE_FORMAT;
}
#endregion
#region Properties
///
/// Gets or sets format date (moment.js)
/// See also "http://momentjs.com/"
///
public string Format { get; set; }
#endregion
}