1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 16:42:50 -05:00

Add checksum to Login Uri models (#3318)

Co-authored-by: Carlos Gonçalves <cgoncalves@bitwarden.com>
This commit is contained in:
Matt Gibson
2023-11-07 11:44:13 -05:00
committed by GitHub
parent e401fc0983
commit 778340ff16
2 changed files with 6 additions and 1 deletions

View File

@ -26,6 +26,7 @@ public class CipherLoginData : CipherData
public CipherLoginUriData() { }
public string Uri { get; set; }
public string UriChecksum { get; set; }
public UriMatchType? Match { get; set; } = null;
}
}