mirror of
https://git.tonybark.com/tonytins/CyberBits.git
synced 2026-05-12 05:23:34 -04:00
12 lines
288 B
C#
12 lines
288 B
C#
namespace Cyberbits;
|
|
|
|
public record Bits(
|
|
[property: JsonPropertyName("image")]
|
|
string Image,
|
|
[property: JsonPropertyName("feat")]
|
|
string Feat,
|
|
[property: JsonPropertyName("base")]
|
|
string[] Base,
|
|
[property: JsonPropertyName("style")]
|
|
string[] Style
|
|
);
|