mirror of
https://github.com/bitwarden/mobile
synced 2025-12-25 12:43:39 +00:00
22 lines
446 B
C#
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; }
|
|
}
|
|
}
|