Files
server/src/Core/Models/Api/FieldDataModel.cs
2017-09-13 16:54:23 -04:00

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; }
}
}