isn/Models/ApiKeys/ApiKeyViewModel.cs
Paul Schneider dd6d83cf06 ApiKey
2021-05-08 15:27:46 +01:00

14 lines
No EOL
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; }
}
}