1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-20 18:23:51 +00:00

audit service

This commit is contained in:
Kyle Spearrin
2019-04-17 17:10:21 -04:00
parent 6d159740d9
commit 676e896d8c
5 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections.Generic;
namespace Bit.Core.Models.Response
{
public class BreachAccountResponse
{
public string AddedDate { get; set; }
public string BreachDate { get; set; }
public List<string> DataClasses { get; set; }
public string Description { get; set; }
public string Domain { get; set; }
public bool IsActive { get; set; }
public bool IsVerified { get; set; }
public string LogoPath { get; set; }
public string ModifiedDate { get; set; }
public string Name { get; set; }
public int PwnCount { get; set; }
public string Title { get; set; }
}
}