aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Social/ISharingRepository.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-08 23:58:58 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-08 23:58:58 -0500
commit24532f3e2d7de2542b664383c5e0bc0cce61d7fc (patch)
treebe7f3db9c582a7ce2810879ca8e1351cb4038bfb /MediaBrowser.Model/Social/ISharingRepository.cs
parent15ebff2b3a738855d6c35fafc37d40a72293eef8 (diff)
update power management
Diffstat (limited to 'MediaBrowser.Model/Social/ISharingRepository.cs')
-rw-r--r--MediaBrowser.Model/Social/ISharingRepository.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Social/ISharingRepository.cs b/MediaBrowser.Model/Social/ISharingRepository.cs
new file mode 100644
index 000000000..069b6e1fe
--- /dev/null
+++ b/MediaBrowser.Model/Social/ISharingRepository.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Model.Social
+{
+ public interface ISharingRepository
+ {
+ Task CreateShare(SocialShareInfo info);
+ Task DeleteShare(string id);
+ SocialShareInfo GetShareInfo(string id);
+ }
+}