21 lines
638 B
C#
21 lines
638 B
C#
|
using ComputerStoreDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Data;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ComputerStoreContracts.BindingModels
|
|||
|
{
|
|||
|
public class SellerBindingModel : ISellerModel
|
|||
|
{
|
|||
|
public int ID { get; set; }
|
|||
|
public string Username { get; set; } = string.Empty;
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
public string? FirstName { get; set; } = string.Empty;
|
|||
|
public string? LastName { get; set; } = string.Empty;
|
|||
|
public string? MiddleName { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|