ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/SearchModels/ImplementerSearchModel.cs

16 lines
369 B
C#
Raw Permalink Normal View History

2024-05-11 21:30:00 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; } = string.Empty;
public string? Password { get; set; } = string.Empty;
}
}