2021-05-02 16:37:03 +01:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2021-05-16 14:07:14 +01:00
|
|
|
namespace nuget_host.Data.ApiKeys
|
2021-05-02 16:37:03 +01:00
|
|
|
{
|
|
|
|
|
public class ApiKeyViewModel
|
|
|
|
|
{
|
|
|
|
|
[Display(Name = "Key Name")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Display(Name = "Key Value")]
|
|
|
|
|
public string ProtectedValue { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|