9 lines
239 B
C#
9 lines
239 B
C#
using DotBased.Monads;
|
|
using Manager.App.Models.Library;
|
|
|
|
namespace Manager.App.Services;
|
|
|
|
public interface ILibraryService
|
|
{
|
|
public Task<Result<LibraryInformation>> GetLibraryInfoAsync(CancellationToken cancellationToken = default);
|
|
} |