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.

18 lines
399 B

2 years ago
using Volo.Abp.Domain.Entities.Events;
namespace Win_in.Sfs.Shared.Event;
public class SfsCancelledEntityEventData<TEntity> : EntityEventData<TEntity>
{
public SfsCancelledEntityEventData(TEntity entity) : base(entity)
{
}
}
public class SfsAbortedEntityEventData<TEntity> : EntityEventData<TEntity>
{
public SfsAbortedEntityEventData(TEntity entity) : base(entity)
{
}
}