Restore appstore registration end point

This commit is contained in:
Eric Reed
2015-10-16 10:29:02 -04:00
parent 3741eb2426
commit 0ed2fed529
4 changed files with 114 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
using System;
using MediaBrowser.Model.Entities;
using System.Threading.Tasks;
@@ -45,5 +46,21 @@ namespace MediaBrowser.Common.Security
/// </summary>
/// <returns>Task&lt;SupporterInfo&gt;.</returns>
Task<SupporterInfo> GetSupporterInfo();
/// <summary>
/// Register and app store sale with our back-end
/// </summary>
/// <param name="store"></param>
/// <param name="application"></param>
/// <param name="product"></param>
/// <param name="feature"></param>
/// <param name="type"></param>
/// <param name="storeId"></param>
/// <param name="storeToken"></param>
/// <param name="email"></param>
/// <param name="amt"></param>
/// <returns>true if successful</returns>
Task<Boolean> RegisterAppStoreSale(string store, string application, string product, string feature,
string type, string storeId, string storeToken, string email, string amt);
}
}