isn/src/nuget-host/Data/ApiKeys/EditModel.cs

12 lines
228 B
C#
Raw Normal View History

2021-05-16 14:07:14 +01:00
namespace nuget_host.Data.ApiKeys
2021-05-02 16:37:03 +01:00
{
public class EditModel
{
public EditModel()
{
if (ApiKey==null) ApiKey = new ApiKey();
}
public ApiKey ApiKey { get; set; }
}
}