You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuDboExtensions.cs 228B

123456789101112
  1. using Luticate2.Auth.Dbo.Result;
  2. namespace Luticate2.Auth.Dbo
  3. {
  4. public static class LuDboExtensions
  5. {
  6. public static int ToInt(this LuStatus status)
  7. {
  8. return (int) status;
  9. }
  10. }
  11. }