2017-08-09 19:56:38 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2016-11-09 04:58:58 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Social
|
|
|
|
|
{
|
|
|
|
|
public interface ISharingRepository
|
|
|
|
|
{
|
|
|
|
|
Task CreateShare(SocialShareInfo info);
|
|
|
|
|
Task DeleteShare(string id);
|
|
|
|
|
SocialShareInfo GetShareInfo(string id);
|
|
|
|
|
}
|
|
|
|
|
}
|