isn/Models/ApiKeys/IndexModel.cs

9 lines
163 B
C#
Raw Normal View History

2021-05-02 16:37:03 +01:00
using System.Collections.Generic;
namespace nuget_host.Models.ApiKeys
{
public class IndexModel
{
public List<ApiKey> ApiKey { get; set; }
}
}