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
+15
View File
@@ -0,0 +1,15 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace pet_companion_api.Models
{
public class Resources
{
[Key, ForeignKey("Pet")]
public string PetId { get; set; }
public int Wisdom { get; set; }
public int Gold { get; set; }
public int Food { get; set; }
public int Junk { get; set; }
}
}