KalkulatorISP-31rrrrr/source/repos/WinFormsApp6/Models/Chamber.cs
2025-11-11 14:18:33 +04:00

18 lines
373 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
namespace WinFormsApp6.Models;
public partial class Chamber
{
public int Idchambers { get; set; }
public int Номер { get; set; }
public int КолВоМест { get; set; }
public int Этаж { get; set; }
public virtual ICollection<Pacient> Pacients { get; set; } = new List<Pacient>();
}