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

12 lines
212 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
namespace LOC.Core.Model.Account
{
public class OwnedPet
{
public int OwnedPetId { get; set; }
public string PetName { get; set; }
public string PetType { get; set; }
}
}