mirror of
https://git.tonybark.com/tonytins/CyberBits.git
synced 2026-06-28 04:03:37 -04:00
17 lines
384 B
C#
17 lines
384 B
C#
namespace CyberBits;
|
|
|
|
public record Bits(
|
|
[property: JsonPropertyName("image")]
|
|
string Image,
|
|
[property: JsonPropertyName("feat")]
|
|
string Feat,
|
|
[property: JsonPropertyName("model")]
|
|
string[] Model,
|
|
[property: JsonPropertyName("style")]
|
|
string[] Style
|
|
);
|
|
|
|
public record Addon(
|
|
[property: JsonPropertyName("cyberware")]
|
|
string[] Cyberware
|
|
);
|