1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 10:13:39 +00:00

added share data model

This commit is contained in:
Kyle Spearrin
2017-02-21 21:31:52 -05:00
parent 9ca2baba74
commit f101541ff8
11 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using System;
using Bit.Core.Domains;
namespace Bit.Core.Repositories
{
public interface IShareRepository : IRepository<Share, Guid>
{
}
}