18 lines
349 B
C#
18 lines
349 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; }
|
|
|
|
public int? UserId { get; set; }
|
|
}
|
|
}
|