mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-03-30 07:11:43 +02:00
9 lines
188 B
C#
9 lines
188 B
C#
using VoidCat.Model;
|
|
|
|
namespace VoidCat.Services.Abstractions;
|
|
|
|
public interface IStatsReporter
|
|
{
|
|
ValueTask<Bandwidth> GetBandwidth();
|
|
ValueTask<Bandwidth> GetBandwidth(Guid id);
|
|
} |