18 lines
409 B
C#
18 lines
409 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
|
||
namespace WinFormsApp6.Models;
|
||
|
||
public partial class Procedure
|
||
{
|
||
public int Idprocedures { get; set; }
|
||
|
||
public string Название { get; set; } = null!;
|
||
|
||
public decimal Цена { get; set; }
|
||
|
||
public string Описание { get; set; } = null!;
|
||
|
||
public virtual ICollection<Pacient> Pacients { get; set; } = new List<Pacient>();
|
||
}
|