1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-25 12:43:39 +00:00
Files
mobile/src/Core/Models/Data/FieldData.cs
Kyle Spearrin 87798612a6 more models
2019-04-12 11:42:45 -04:00

22 lines
446 B
C#

using Bit.Core.Enums;
using Bit.Core.Models.Api;
namespace Bit.Core.Models.Data
{
public class FieldData : Data
{
public FieldData() { }
public FieldData(FieldApi data)
{
Type = data.Type;
Name = data.Name;
Value = data.Value;
}
public FieldType Type { get; set; }
public string Name { get; set; }
public string Value { get; set; }
}
}