11 lines
230 B
C#
11 lines
230 B
C#
|
|
namespace MediaBrowser.Model.Social
|
|
{
|
|
public interface ISharingRepository
|
|
{
|
|
void CreateShare(SocialShareInfo info);
|
|
void DeleteShare(string id);
|
|
SocialShareInfo GetShareInfo(string id);
|
|
}
|
|
}
|