mirror of
https://github.com/bitwarden/server
synced 2025-12-24 12:13:17 +00:00
15 lines
314 B
C#
15 lines
314 B
C#
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class CipherFieldData
|
|
{
|
|
public CipherFieldData() { }
|
|
|
|
public FieldType Type { get; set; }
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
public int? LinkedId { get; set; }
|
|
}
|
|
}
|