mirror of
https://github.com/bitwarden/mobile
synced 2025-12-19 17:53:47 +00:00
domains and view stubs
This commit is contained in:
32
src/Core/Models/View/IdentityView.cs
Normal file
32
src/Core/Models/View/IdentityView.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using Bit.Core.Models.Domain;
|
||||
|
||||
namespace Bit.Core.Models.View
|
||||
{
|
||||
public class IdentityView : View
|
||||
{
|
||||
public IdentityView() { }
|
||||
|
||||
public IdentityView(Identity i) { }
|
||||
|
||||
public string Title { get; set; }
|
||||
public string FirstName { get; set; }
|
||||
public string MiddleName { get; set; }
|
||||
public string LastName { get; set; }
|
||||
public string Address1 { get; set; }
|
||||
public string Address2 { get; set; }
|
||||
public string Address3 { get; set; }
|
||||
public string City { get; set; }
|
||||
public string State { get; set; }
|
||||
public string PostalCode { get; set; }
|
||||
public string Country { get; set; }
|
||||
public string Company { get; set; }
|
||||
public string Email { get; set; }
|
||||
public string Phone { get; set; }
|
||||
public string SSN { get; set; }
|
||||
public string Username { get; set; }
|
||||
public string PassportNumber { get; set; }
|
||||
public string LicenseNumber { get; set; }
|
||||
|
||||
// TODO
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user