7 lines
138 B
C#
7 lines
138 B
C#
namespace DigitalData.Auth.API.Services.Contracts;
|
|
|
|
public interface INotifier
|
|
{
|
|
Task UpdateKeyAsync(string name, string value);
|
|
}
|