18 lines
387 B
C#
Raw Normal View History

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; }
2023-05-20 06:49:33 +04:00
public int? ClientId { get; set; }
public int[]? Ids { get; set; }
}
}