15 lines
300 B
C#
Raw Normal View History

2024-04-13 01:58:54 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmContracts.SearchModels
{
2024-05-10 23:48:48 +04:00
public class DocumentSearchModel
2024-04-13 01:58:54 +04:00
{
public int? Id { get; set; }
2024-05-10 23:48:48 +04:00
public string? DocumentName { get; set; }
2024-04-13 01:58:54 +04:00
}
}