CSharp-Single-EFCore/Bunny.Dao/Models/System/Product.cs

12 lines
242 B
C#

using Bunny.Dao.Models.Base;
namespace Bunny.Dao.Models.System;
public class Product : BaseModel
{
public string? CustomerId { get; set; }
public string? CustomerName { get; set; }
public string? PackageType { get; set; }
}