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

15 lines
334 B
C#
Raw Normal View History

2017-09-13 16:54:23 -04:00
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; }
}
}