Mineplex2018-withcommit/Website/LOC.Core/Model/Account/OwnedPet.cs

12 lines
212 B
C#

namespace LOC.Core.Model.Account
{
public class OwnedPet
{
public int OwnedPetId { get; set; }
public string PetName { get; set; }
public string PetType { get; set; }
}
}