jellyfin/MediaBrowser.Model/Social/ISharingRepository.cs
2017-08-26 20:32:33 -04:00

10 lines
230 B
C#

namespace MediaBrowser.Model.Social
{
public interface ISharingRepository
{
void CreateShare(SocialShareInfo info);
void DeleteShare(string id);
SocialShareInfo GetShareInfo(string id);
}
}