13 lines
264 B
C#
13 lines
264 B
C#
using Hncore.Pass.Vpn.Domain;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Hncore.Pass.Vpn.Model
|
|
{
|
|
public class PackageUnitItemModel
|
|
{
|
|
public int Count { get; set; }
|
|
|
|
public ProductPackageEntity Package { get; set; }
|
|
}
|
|
}
|