mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 05:55:13 -05:00
14 lines
280 B
C#
14 lines
280 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; }
|
|
}
|