18 lines
373 B
C#
18 lines
373 B
C#
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>();
|
||
}
|