Files
timetracker/timetracker.Shared/IUserNotificationService.cs
2026-06-08 16:24:51 +02:00

8 lines
157 B
C#

namespace timetracker.Shared;
public interface IUserNotificationService
{
event Func<Task>? OnUsersChanged;
event Func<int, Task>? OnUserDeleted;
}