Initial source commit 🎉

This commit is contained in:
Tony Bark 2026-02-04 06:43:14 -05:00
commit b24157309d
20 changed files with 996 additions and 0 deletions

16
CyberBits/Bits.cs Normal file
View 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
);