diff --git a/src/Core/Models/Api/CipherLoginModel.cs b/src/Core/Models/Api/CipherLoginModel.cs index 144cc7d43..74cb15e18 100644 --- a/src/Core/Models/Api/CipherLoginModel.cs +++ b/src/Core/Models/Api/CipherLoginModel.cs @@ -50,19 +50,19 @@ namespace Bit.Core.Models.Api public LoginApiUriModel(string uri) { Uri = uri; - MatchType = UriMatchType.BaseDomain; + Match = UriMatchType.BaseDomain; } public LoginApiUriModel(CipherLoginData.LoginDataUriModel uri) { Uri = uri.Uri; - MatchType = uri.MatchType; + Match = uri.Match; } [EncryptedString] [StringLength(10000)] public string Uri { get; set; } - public UriMatchType MatchType { get; set; } + public UriMatchType Match { get; set; } } } } diff --git a/src/Core/Models/Data/CipherLoginData.cs b/src/Core/Models/Data/CipherLoginData.cs index af9c117c2..634c76ea6 100644 --- a/src/Core/Models/Data/CipherLoginData.cs +++ b/src/Core/Models/Data/CipherLoginData.cs @@ -30,11 +30,11 @@ namespace Bit.Core.Models.Data public LoginDataUriModel(CipherLoginModel.LoginApiUriModel uri) { Uri = uri.Uri; - MatchType = uri.MatchType; + Match = uri.Match; } public string Uri { get; set; } - public UriMatchType MatchType { get; set; } + public UriMatchType Match { get; set; } } } }