/Passbook.Sample.Web/Services/IWebServiceHandler.cs

https://github.com/Comezon/dotnet-passbook · C# · 12 lines · 11 code · 1 blank · 0 comment · 0 complexity · 89b60485f556fee727bdcdd9cb10bdd2 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace Passbook.Sample.Web.Services
  6. {
  7. public interface IWebServiceHandler
  8. {
  9. void RegisterPass(string version, string deviceLibraryIdentifier, string passTypeIdentifier, string serialNumber, string pushToken, string authorizationToken, out PassRegistrationResult result);
  10. }
  11. }