Files
server/src/Core/Models/Api/CipherFieldModel.cs

23 lines
531 B
C#
Raw Normal View History

2017-09-13 16:54:23 -04:00
using System.ComponentModel.DataAnnotations;
using Bit.Core.Enums;
using Bit.Core.Models.Data;
2017-09-13 16:54:23 -04:00
namespace Bit.Core.Models.Api
{
public class CipherFieldModel
2017-09-13 16:54:23 -04:00
{
public CipherFieldModel(CipherFieldData data)
{
Type = data.Type;
Name = data.Name;
Value = data.Value;
}
2017-09-13 16:54:23 -04:00
public FieldType Type { get; set; }
[StringLength(1000)]
public string Name { get; set; }
[StringLength(1000)]
public string Value { get; set; }
}
}