PageRenderTime 42ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/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
  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 enum PassRegistrationResult
  8. {
  9. Failed,
  10. SuccessfullyRegistered,
  11. AlreadyRegistered,
  12. UnAuthorized
  13. }
  14. }