1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00
bitwarden-mobile/src/App/Models/Field.cs
2017-11-28 13:39:31 -05:00

22 lines
534 B
C#

using Bit.App.Enums;
using Bit.App.Models.Api;
namespace Bit.App.Models
{
public class Field
{
public Field() { }
public Field(FieldDataModel model)
{
Type = model.Type;
Name = model.Name != null ? new CipherString(model.Name) : null;
Value = model.Value != null ? new CipherString(model.Value) : null;
}
public FieldType Type { get; set; }
public CipherString Name { get; set; }
public CipherString Value { get; set; }
}
}