14 lines
306 B
C#
14 lines
306 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demo_trade.Data.RemoteData.Entity;
|
|
|
|
public partial class Category
|
|
{
|
|
public int CategoryId { get; set; }
|
|
|
|
public string? CategoryName { get; set; }
|
|
|
|
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
|
|
}
|