isn/src/appled/Data/ApiKeys/IndexModel.cs

9 lines
161 B
C#
Raw Normal View History

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