/Passbook.Sample.Web/Services/PassRegistrationResult.cs
https://github.com/Comezon/dotnet-passbook · C# · 15 lines · 14 code · 1 blank · 0 comment · 0 complexity · 55b3a76567fb6afe31e5af84b986f45f MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Passbook.Sample.Web.Services
- {
- public enum PassRegistrationResult
- {
- Failed,
- SuccessfullyRegistered,
- AlreadyRegistered,
- UnAuthorized
- }
- }