mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-11-15 11:37:34 +01:00
13 lines
264 B
C#
13 lines
264 B
C#
using VoidCat.Model;
|
|
|
|
namespace VoidCat.Services.Abstractions;
|
|
|
|
public interface IFileMetadataStore
|
|
{
|
|
ValueTask<TMeta?> Get<TMeta>(Guid id) where TMeta : VoidFileMeta;
|
|
|
|
ValueTask Set(Guid id, SecretVoidFileMeta meta);
|
|
|
|
ValueTask Delete(Guid id);
|
|
}
|