/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
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Passbook.Sample.Web.Services
- {
- public interface IWebServiceHandler
- {
- void RegisterPass(string version, string deviceLibraryIdentifier, string passTypeIdentifier, string serialNumber, string pushToken, string authorizationToken, out PassRegistrationResult result);
- }
- }