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:
20
src/Core/Models/View/CardView.cs
Normal file
20
src/Core/Models/View/CardView.cs
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user