14 lines
299 B
C#
14 lines
299 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace nuget_host.Models.ApiKeys
|
||
|
|
{
|
||
|
|
public class ApiKeyViewModel
|
||
|
|
{
|
||
|
|
[Display(Name = "Key Name")]
|
||
|
|
public string Name { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
[Display(Name = "Key Value")]
|
||
|
|
public string ProtectedValue { get; set; }
|
||
|
|
}
|
||
|
|
}
|