Case_accounting/CaseAccounting/CaseAccountingContracts/SearchModels/LawyerSearchModel.cs

16 lines
307 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.SearchModels
{
public class LawyerSearchModel
{
public int? Id { get; set; }
2023-03-26 20:08:05 +04:00
public int? SpecializationId { get; set; }
}
}