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

9 lines
154 B
C#
Raw Normal View History

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