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

18 lines
416 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 Medicine
{
public int Idmedicine { get; set; }
public string Название { get; set; } = null!;
public string Производитель { get; set; } = null!;
public decimal Цена { get; set; }
public virtual ICollection<Pacient> Pacients { get; set; } = new List<Pacient>();
}