owner id
This commit is contained in:
parent
9575dd2754
commit
e4511a8aaa
38 changed files with 615 additions and 68 deletions
14
src/nuget-host/Data/ApiKeys/ApiKeyViewModel.cs
Normal file
14
src/nuget-host/Data/ApiKeys/ApiKeyViewModel.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue