18 lines
388 B
C#
18 lines
388 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ComputerStoreDataModels.Models
|
|||
|
{
|
|||
|
public interface ISellerModel : IID
|
|||
|
{
|
|||
|
string Username { get; }
|
|||
|
string Password { get; }
|
|||
|
string? FirstName { get; }
|
|||
|
string? LastName { get; }
|
|||
|
string? MiddleName { get; }
|
|||
|
}
|
|||
|
}
|