Coursework_ComputerStore_Li.../ComputerStoreContracts/SearchModels/SellerSearchModel.cs

16 lines
346 B
C#
Raw Normal View History

2023-04-05 22:11:17 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreContracts.SearchModels
{
public class SellerSearchModel
{
public int? ID { get; set; }
public string? Username { get; set; }
2023-05-19 16:11:31 +04:00
public string? Password { get; set; }
2023-04-05 22:11:17 +04:00
}
}