mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
* PM-4739 Implement checksum uri validation * PM-4739 Add missing field * PM-4739 Fix PR comments * PM-4739 Remove unnecessary comment * PM-4739 Add try catch and log exception * PM-4739 Added missing files from last commit * PM-4739 Change arg name * [PM-5461] Fix item saving with blank URI (#2948) * PM-5461 Fix item saving with blank URI * PM-5461 Fix PR comment
22 lines
480 B
C#
22 lines
480 B
C#
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Api;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class LoginUriData : Data
|
|
{
|
|
public LoginUriData() { }
|
|
|
|
public LoginUriData(LoginUriApi data)
|
|
{
|
|
Uri = data.Uri;
|
|
Match = data.Match;
|
|
UriChecksum = data.UriChecksum;
|
|
}
|
|
|
|
public string Uri { get; set; }
|
|
public UriMatchType? Match { get; set; }
|
|
public string UriChecksum { get; set; }
|
|
}
|
|
}
|