Meme Generation API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Kynareth/src/Models/ApiCall.cs

10 lines
203 B

namespace Kynareth.Models;
public class ApiCall
{
public int Id { get; set; }
public string Route { get; set; }
public DateTime TimeStamp { get; set; }
public virtual ApiToken Token { get; set; }
}