Subd/SubdShoeStore/Range.cs
Никита Чернышов a0b3663381 вытяжка бд
2023-05-04 01:47:30 +04:00

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>();
}