Computer_Hardware_Store/HardwareShop/HardwareShopContracts/SearchModels/ClientSearchModel.cs

15 lines
352 B
C#
Raw Normal View History

2023-04-01 12:50:44 +04:00
using FoodOrdersDataModels.Models;
using HardwareShopDataModels.Enums;
using System.ComponentModel;
namespace FoodOrdersContracts.SearchModels
{
public class ClientViewModel
{
public int? Id { get; set; }
public string? Login { get; set; } = string.Empty;
public string? Email { get; set; } = string.Empty;
}
}