// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Agents.AI.UnitTests; internal sealed class Animal { public int Id { get; set; } public string? FullName { get; set; } public Species Species { get; set; } }