Add check for stdarg.h/varargs.h; Backup GitHub Classic Projects as GitHub is rudely...
[SquirrelJME.git] / tools / github-classic-project-dump / src / main / java / cc / squirreljme / gh / classic / GitHubCard.java
blob657db8f35c0149f6234edfcdbd96be3b8a371df3
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // Multi-Phasic Applications: SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc.squirreljme.gh.classic;
12 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
13 import com.fasterxml.jackson.annotation.JsonProperty;
14 import lombok.Data;
16 /**
17 * GitHub Card.
19 * @since 2024/10/03
21 @Data
22 @JsonIgnoreProperties(ignoreUnknown = true)
23 public class GitHubCard
25 /** The ID of this. */
26 @JsonProperty("id")
27 Integer id;