using JetBrains.Annotations; using System; using System.Collections.Generic; using Volo.Abp; namespace Sanhe.Abp.MenuManagement { public class MenuWithGrantedProviders { public Guid MenuId { get; } public bool IsGranted { get; set; } public List Providers { get; set; } public MenuWithGrantedProviders([NotNull] Guid menuId, bool isGranted) { Check.NotNull(menuId, nameof(menuId)); MenuId = menuId; IsGranted = isGranted; Providers = new List(); } } }