SYBD_2024/Subd-4/SearchModels/ProjectSearchModel.cs

15 lines
266 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Subd_4.SearchModels
{
public class ProjectSearchModel
{
public int? Id { get; set; }
public string? ClientName { get; set; }
}
}