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.
iot/projects/Platform/Events/ExecSceneEvent.cs

16 lines
323 B

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