using VoidCat.Model; namespace VoidCat.Services.Abstractions; /// /// Store for virus scan results /// public interface IVirusScanStore : IBasicStore { /// /// Get the latest scan result by file id /// /// /// ValueTask GetByFile(Guid id); }