13 lines
464 B
C#
13 lines
464 B
C#
using DotBased.Monads;
|
|
using Manager.App.Models.Library;
|
|
using Manager.App.Models.System;
|
|
using Manager.Data.Entities.LibraryContext;
|
|
|
|
namespace Manager.App.Services;
|
|
|
|
public interface ILibraryService
|
|
{
|
|
public Task<Result<LibraryInformation>> GetLibraryInfoAsync(CancellationToken cancellationToken = default);
|
|
|
|
public Task<ListResult<ChannelEntity>> GetChannelAccountsAsync(int total = 20, int offset = 0, CancellationToken cancellationToken = default);
|
|
} |