CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/SearchModels/ShopAssistentSearchModel.cs
Илья Федотов 2587d43871 Contracts 0.1
2024-04-27 13:01:57 +04:00

15 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.SearchModels
{
public class ShopAssistentSearchModel
{
public int? ID { get; set; }
public string? Login { get; set; }
}
}