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

12 lines
242 B
C#
Raw Normal View History

2024-08-08 22:23:36 +08:00
using Bunny.Dao.Models.Base;
namespace Bunny.Dao.Models.System;
public class Product : BaseModel
2024-08-08 22:23:36 +08:00
{
public string? CustomerId { get; set; }
public string? CustomerName { get; set; }
public string? PackageType { get; set; }
}