14 lines
309 B
C#
14 lines
309 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demo_trade.Data.RemoteData.Entity;
|
|
|
|
public partial class Productunit
|
|
{
|
|
public int UnitId { get; set; }
|
|
|
|
public string UnitName { get; set; } = null!;
|
|
|
|
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
|
|
}
|