PIbd-23-Nasyrov-A.G.-Flower.../FlowerShopContracts/SearchModels/ImplementerSearchModel.cs
2024-04-22 20:09:58 +04:00

17 lines
395 B
C#

using FlowerShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlowerShopContracts.SearchModels
{
public class ImplementerSearchModel
{
public int? Id { get; set; }
public string? ImplementerFIO { get; set; } = string.Empty;
public string? Password { get; set; } = string.Empty;
}
}