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.
abp/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/Menus/MenuChangedEto.cs

13 lines
281 B

using System;
using Volo.Abp.Domain.Entities.Events.Distributed;
using Volo.Abp.EventBus;
namespace Volo.CmsKit.Menus
{
[Serializable]
[EventName("Volo.CmsKit.Menus.Changed")]
public class MenuChangedEto : EtoBase
{
public Guid MenuId { get; set; }
}
}