18 lines
382 B
C#
18 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SubdShoeStore;
|
|
|
|
public partial class Range
|
|
{
|
|
public int Rangeid { get; set; }
|
|
|
|
public string Shoename { get; set; } = null!;
|
|
|
|
public string Mfr { get; set; } = null!;
|
|
|
|
public decimal Price { get; set; }
|
|
|
|
public virtual ICollection<Consignment> Consignments { get; set; } = new List<Consignment>();
|
|
}
|