12 lines
254 B
C#
12 lines
254 B
C#
using Prism.Events;
|
|
|
|
namespace YY.Admin.Core.Events;
|
|
|
|
public class DictChangedPayload
|
|
{
|
|
public string Action { get; set; } = string.Empty;
|
|
public string? DictId { get; set; }
|
|
}
|
|
|
|
public class DictChangedEvent : PubSubEvent<DictChangedPayload> { }
|