1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-06 18:42:49 -05: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>
{
}
}