mirror of
https://github.com/bitwarden/mobile
synced 2025-12-20 18:23:51 +00:00
audit service
This commit is contained in:
20
src/Core/Models/Response/BreachAccountResponse.cs
Normal file
20
src/Core/Models/Response/BreachAccountResponse.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user