isn/Models/ApiKeys/CreateModel.cs

14 lines
311 B
C#
Raw Normal View History

2021-05-02 16:37:03 +01:00
using System.ComponentModel.DataAnnotations;
namespace nuget_host.Models.ApiKeys
{
public class CreateModel
{
[Required][StringLength(255)]
[Display(Name = "Key Name")]
public string Name { get; set; }
public string UserId { get; set; }
}
}