2017-08-27 00:32:33 +00:00
|
|
|
|
|
2016-11-09 04:58:58 +00:00
|
|
|
|
namespace MediaBrowser.Model.Social
|
|
|
|
|
{
|
|
|
|
|
public interface ISharingRepository
|
|
|
|
|
{
|
2017-08-27 00:32:33 +00:00
|
|
|
|
void CreateShare(SocialShareInfo info);
|
|
|
|
|
void DeleteShare(string id);
|
2016-11-09 04:58:58 +00:00
|
|
|
|
SocialShareInfo GetShareInfo(string id);
|
|
|
|
|
}
|
|
|
|
|
}
|