Files
BackOffice.BFF/src/BackOffice.BFF.Application/Common/Interfaces/ITokenProvider.cs
2025-09-28 15:24:13 +03:30

7 lines
127 B
C#

namespace BackOffice.BFF.Application.Common.Interfaces;
public interface ITokenProvider
{
Task<string> GetTokenAsync();
}