ServiceStack.Text.Tests.JsonTests.Zoo.Zoo C# (CSharp) Method

Zoo() public method

public Zoo ( ) : System
return System
		public Zoo()
		{
			Animals = new List<Animal>
			{
				new Dog { Name = @"Fido", DogBark = "woof" },
				new Cat { Name = @"Tigger", CatMeow = "meow" },
			};
		}
Zoo