mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-11-15 11:27:08 +01:00
10 lines
219 B
C#
10 lines
219 B
C#
using VoidCat.Model;
|
|
|
|
namespace VoidCat.Services.Abstractions;
|
|
|
|
public interface IStatsReporter
|
|
{
|
|
ValueTask<Bandwidth> GetBandwidth();
|
|
ValueTask<Bandwidth> GetBandwidth(Guid id);
|
|
ValueTask Delete(Guid id);
|
|
} |