Case_accounting/CaseAccounting/CaseAccountingContracts/SearchModels/LawyerSearchModel.cs

16 lines
306 B
C#

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; }
public int SpecializationId { get; set; }
}
}