18 lines
386 B
C#
18 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SubdShoeStore;
|
|
|
|
public partial class Seller
|
|
{
|
|
public int Sellerid { get; set; }
|
|
|
|
public string Surname { get; set; } = null!;
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public string PhoneNumber { get; set; } = null!;
|
|
|
|
public virtual ICollection<Selling> Sellings { get; set; } = new List<Selling>();
|
|
}
|