mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
594 B
28 lines
594 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
namespace Volo.CmsKit.Admin.Menus;
|
|
|
|
[Serializable]
|
|
public class MenuItemUpdateInput : IHasConcurrencyStamp
|
|
{
|
|
[Required]
|
|
public string DisplayName { get; set; }
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
public string Url { get; set; }
|
|
|
|
public string Icon { get; set; }
|
|
|
|
public string Target { get; set; }
|
|
|
|
public string ElementId { get; set; }
|
|
|
|
public string CssClass { get; set; }
|
|
|
|
public Guid? PageId { get; set; }
|
|
|
|
public string ConcurrencyStamp { get; set; }
|
|
}
|
|
|