using Infrastructure.Events; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Platform.Events { public class ExecSceneEvent : BaseEvent { public ExecSceneEvent(T entity) : base(entity, nameof(EntityDeleted)) { } } }