14 lines
311 B
C#
14 lines
311 B
C#
|
|
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; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|