Anapher/Strive

View on GitHub
src/Services/ConferenceManagement/Strive.Core/Interfaces/IScheduledNotification.cs

Summary

Maintainability
A
0 mins
Test Coverage
using MediatR;

namespace Strive.Core.Interfaces
{
    public interface IScheduledNotification : INotification
    {
        string? TokenId { get; set; }
    }
}