21 lines
581 B
C#

using System.ComponentModel.DataAnnotations;
namespace pet_companion_api.Models
{
public class Pet
{
[Key]
public string Id { get; set; }
public string Name { get; set; }
public PetClass Class { get; set; }
public PetStats Stats { get; set; }
public Resources Resources { get; set; }
public int Level { get; set; }
public string UserId { get; set; }
public bool IsDead { get; set; }
public PetActionGather PetAction { get; set; }
public DateTime ActionSince { get; set; }
}
}