14 lines
No EOL
297 B
C#
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; }
|
|
}
|
|
} |