diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-08 23:58:58 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-08 23:58:58 -0500 |
| commit | 24532f3e2d7de2542b664383c5e0bc0cce61d7fc (patch) | |
| tree | be7f3db9c582a7ce2810879ca8e1351cb4038bfb /MediaBrowser.Model/Social/ISharingRepository.cs | |
| parent | 15ebff2b3a738855d6c35fafc37d40a72293eef8 (diff) | |
update power management
Diffstat (limited to 'MediaBrowser.Model/Social/ISharingRepository.cs')
| -rw-r--r-- | MediaBrowser.Model/Social/ISharingRepository.cs | 15 |
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); + } +} |
