isn/Models/ApiKeys/IndexModel.cs

9 lines
163 B
C#

3 years ago
using System.Collections.Generic;
namespace nuget_host.Models.ApiKeys
{
public class IndexModel
{
public List<ApiKey> ApiKey { get; set; }
}
}