mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
21 lines
560 B
C#
21 lines
560 B
C#
using System;
|
|
|
|
namespace Bit.App.Models.Api
|
|
{
|
|
public class LoginResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string FolderId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Uri { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
public string Notes { get; set; }
|
|
public bool Favorite { get; set; }
|
|
public DateTime RevisionDate { get; set; }
|
|
|
|
// Expandables
|
|
public FolderResponse Folder { get; set; }
|
|
}
|
|
}
|