ComputerHardwareStore_YouAr.../ComputerHardwareStore/ComputerHardwareStoreContracts/BindingModels/VendorBindingModel.cs

13 lines
384 B
C#
Raw Normal View History

2024-04-18 16:47:15 +04:00
using ComputerHardwareStoreDataModels.Models;
namespace ComputerHardwareStoreContracts.BindingModels
{
public class VendorBindingModel : IVendorModel
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty;
2024-04-25 22:38:28 +04:00
public string Login { get; set; } = string.Empty;
2024-04-18 16:47:15 +04:00
public string Password { get; set; } = string.Empty;
}
}