Files
server/src/Core/Models/Data/CipherFieldData.cs
Kyle Spearrin 3563a85318 add support for multiple uris on login model.
refactor cipher data models.
2018-02-28 21:23:46 -05:00

22 lines
469 B
C#

using Bit.Core.Enums;
using Bit.Core.Models.Api;
namespace Bit.Core.Models.Data
{
public class CipherFieldData
{
public CipherFieldData() { }
public CipherFieldData(CipherFieldModel field)
{
Type = field.Type;
Name = field.Name;
Value = field.Value;
}
public FieldType Type { get; set; }
public string Name { get; set; }
public string Value { get; set; }
}
}