10 lines
200 B
C#
10 lines
200 B
C#
|
namespace ComputerHardwareStoreDataModels.Models
|
|||
|
{
|
|||
|
public interface IVendorModel : IId
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
string Login { get; }
|
|||
|
string Password { get; }
|
|||
|
}
|
|||
|
}
|