1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-04 09:33:16 +00:00

make kdfIterations nullable (#1169)

This commit is contained in:
Matt Portune
2020-12-08 10:54:58 -05:00
committed by GitHub
parent e79097603f
commit dcfdc7d0ea
3 changed files with 4 additions and 4 deletions

View File

@@ -19,6 +19,6 @@ namespace Bit.Core.Models.Response
public string Key { get; set; }
public string TwoFactorToken { get; set; }
public KdfType Kdf { get; set; }
public int KdfIterations { get; set; }
public int? KdfIterations { get; set; }
}
}