isn/src/appled/Data/ApiKeys/ApiKeyViewModel.cs
Paul Schneider 5de53a3cba rebrand
2021-06-27 01:53:00 +01:00

14 lines
No EOL
297 B
C#

using System.ComponentModel.DataAnnotations;
namespace nuget_host.Data.ApiKeys
{
public class ApiKeyViewModel
{
[Display(Name = "Key Name")]
public string Name { get; set; }
[Display(Name = "Key Value")]
public string ProtectedValue { get; set; }
}
}