1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-22 02:51:33 +01:00

switch device type around to match mobile enums

This commit is contained in:
Kyle Spearrin 2016-06-18 16:09:28 -04:00
parent 4fd65f974d
commit 8a34692e7c

View File

@ -2,7 +2,7 @@
{
public enum DeviceType : short
{
iOS = 0,
Android = 1
Android = 0,
iOS = 1
}
}