myhn/Application/IUserProvider.cs
2021-01-08 16:26:19 +01:00

7 lines
102 B
C#

namespace MyHN.Application
{
public interface IUserProvider
{
string GetCurrentUserId();
}
}