1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 00:03:22 +00:00

domains and view stubs

This commit is contained in:
Kyle Spearrin
2019-04-12 16:39:20 -04:00
parent 7c6c36b744
commit 8ade49c958
9 changed files with 292 additions and 30 deletions

View File

@@ -0,0 +1,20 @@
using Bit.Core.Models.Domain;
namespace Bit.Core.Models.View
{
public class CardView : View
{
public CardView() { }
public CardView(Card c) { }
public string Id { get; set; }
public string Url { get; set; }
public string Size { get; set; }
public string SizeName { get; set; }
public string FileName { get; set; }
public SymmetricCryptoKey Key { get; set; }
// TODO
}
}