CourseWork_Borschevskaya_A..../Hospital/HospitalContracts/SearchModels/PrescriptionSearchModel.cs

9 lines
185 B
C#
Raw Normal View History

2023-04-05 11:46:14 +04:00
namespace HospitalContracts.SearchModels
{
public class PrescriptionSearchModel
{
public int? Id { get; set; }
public int? ApothecaryId { get; set; }
}
}