Mineplex2018-withcommit/Website/LOC.Core/Model/Account/OwnedPet.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

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; }
}
}