mirror of
https://github.com/bitwarden/server.git
synced 2026-02-18 23:03:20 +08:00
15 lines
334 B
C#
15 lines
334 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using Bit.Core.Enums;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Api
|
|||
|
|
{
|
|||
|
|
public class FieldDataModel
|
|||
|
|
{
|
|||
|
|
public FieldType Type { get; set; }
|
|||
|
|
[StringLength(1000)]
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
[StringLength(1000)]
|
|||
|
|
public string Value { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|