ISEbd-21_Chegodaev_A.Y._Law.../LawFirm/LawFirmContracts/SearchModels/DocumentSearchModel.cs
aleksandr chegodaev 39c1538546 lab4
2024-05-10 23:48:48 +04:00

15 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmContracts.SearchModels
{
public class DocumentSearchModel
{
public int? Id { get; set; }
public string? DocumentName { get; set; }
}
}