mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
12 lines
229 B
C#
12 lines
229 B
C#
using Bit.App.Enums;
|
|
|
|
namespace Bit.App.Models.Api
|
|
{
|
|
public class FieldDataModel
|
|
{
|
|
public FieldType Type { get; set; }
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
}
|