Files
isn/Models/ApiKeys/IndexModel.cs
Paul Schneider dd6d83cf06 ApiKey
2021-05-08 15:27:46 +01:00

9 lines
163 B
C#

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