2026-03-19 01:50:14 +01:00
|
|
|
#nullable enable
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Wino.Core.Domain.Models.Accounts;
|
|
|
|
|
|
|
|
|
|
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
|
|
|
|
|
|
public interface IWinoAddOnService
|
|
|
|
|
{
|
2026-03-20 00:15:10 +01:00
|
|
|
Task<IReadOnlyList<WinoAddOnInfo>> GetAvailableAddOnsAsync(bool useCachedDataOnly = false, CancellationToken cancellationToken = default);
|
2026-03-19 01:50:14 +01:00
|
|
|
}
|