32 lines
781 B
C#
32 lines
781 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace zooManagerPro.Models;
|
|
|
|
public partial class Enclosure
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int TypeOfEnclosureId { get; set; }
|
|
|
|
public int Capacity { get; set; }
|
|
|
|
public int MaxCapacity { get; set; }
|
|
|
|
public int EnclosureStatusId { get; set; }
|
|
|
|
public decimal Square { get; set; }
|
|
|
|
public int ClimateZoneId { get; set; }
|
|
|
|
public DateOnly LastDateOfTechnicalInsperation { get; set; }
|
|
|
|
public virtual ICollection<Animal> Animals { get; set; } = new List<Animal>();
|
|
|
|
public virtual ClimateZone ClimateZone { get; set; } = null!;
|
|
|
|
public virtual EnclosureStatus EnclosureStatus { get; set; } = null!;
|
|
|
|
public virtual TypeOfEnclosure TypeOfEnclosure { get; set; } = null!;
|
|
}
|