mirror of
https://git.tonybark.com/tonytins/CyberBits.git
synced 2026-05-12 05:23:34 -04:00
Initial source commit 🎉
This commit is contained in:
commit
b24157309d
20 changed files with 996 additions and 0 deletions
16
CyberBits/Bits.cs
Normal file
16
CyberBits/Bits.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
namespace Cyberbits;
|
||||
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
public record Bits(
|
||||
[property: JsonPropertyName("image")]
|
||||
string Image,
|
||||
[property: JsonPropertyName("feat")]
|
||||
string Feat,
|
||||
[property: JsonPropertyName("base")]
|
||||
string[] Base,
|
||||
[property: JsonPropertyName("style")]
|
||||
string[] Style,
|
||||
[property: JsonPropertyName("cyberware")]
|
||||
string[] Cyberware
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue