12 lines
247 B
C#
12 lines
247 B
C#
|
using Bunny.Dao.Models.Base;
|
|||
|
|
|||
|
namespace Bunny.Dao.Models.System;
|
|||
|
|
|||
|
public class Product : BaseStuffModel
|
|||
|
{
|
|||
|
public string? CustomerId { get; set; }
|
|||
|
|
|||
|
public string? CustomerName { get; set; }
|
|||
|
|
|||
|
public string? PackageType { get; set; }
|
|||
|
}
|