1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-29 14:43:50 +00:00
Files
mobile/src/App/Models/Field.cs
2018-03-05 17:18:18 -05:00

22 lines
535 B
C#

using Bit.App.Enums;
using Bit.App.Models.Data;
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; }
}
}