Rogashova_E.A._CourseWork_H.../HospitalContracts/SearchModels/MedicinesSearchModel.cs

18 lines
387 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.SearchModels
{
public class MedicinesSearchModel
{
public int? Id { get; set; }
public string? MedicinesName { get; set; }
public int? ClientId { get; set; }
public int[]? Ids { get; set; }
}
}