Files

14 lines
298 B
C#

using System;
using System.Collections.Generic;
namespace zooManagerPro.Models;
public partial class HealthStatus
{
public int Id { get; set; }
public string HealthStatusName { get; set; } = null!;
public virtual ICollection<Animal> Animals { get; set; } = new List<Animal>();
}