1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 20:53:16 +00:00

folder repo

This commit is contained in:
Kyle Spearrin
2017-03-18 00:01:11 -04:00
parent 3e0c0224b5
commit 3932ed5d67
3 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using System;
using Bit.Core.Models.Table;
namespace Bit.Core.Repositories
{
public interface IFolderRepository : IRepository<Folder, Guid>
{
}
}