isn/Models/ApiKeys/ApiKeyViewModel.cs

14 lines
299 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 ApiKeyViewModel
{
[Display(Name = "Key Name")]
public string Name { get; set; }
[Display(Name = "Key Value")]
public string ProtectedValue { get; set; }
}
}