initial commit

This commit is contained in:
2025-01-31 23:41:30 -03:00
commit 4c4036a266
22 changed files with 810 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace pet_companion_api.Models
{
public class PetClassInfo
{
public string Name { get; set; }
public string Description { get; set; }
public string[] Modifiers { get; set; }
public string Color { get; set; }
public string Emoji { get; set; }
}
}