AJH.CMS.Core.Entities.Menu.Menu C# (CSharp) Method

Menu() public method

public Menu ( ) : System
return System
        public Menu()
        {
            this.CategoryID = 0;
            this.CreationDate = DateTime.Now;
            this.Description = string.Empty;
            this.Details = string.Empty;
            this.ID = 0;
            this.Image = string.Empty;
            this.IsDeleted = false;
            this.KeyWords = string.Empty;
            this.LanguageID = 0;
            this.Name = string.Empty;
            this.PageID = 0;
            this.ParentID = 0;
            this.PortalID = 0;
            this.SEOName = string.Empty;
            this.URL = string.Empty;
            this.MenuType = CMSEnums.MenuType.URL;
            this.Order = 0;
            this.CreatedBy = 0;
            this.ParentObjectID = 0;
            this.IsPublished = false;
            this.MainParentID = 0;
            this.GalleryCategoryID = 0;
            this.PageTitle = string.Empty;
        }
    }
Menu