23 lines
456 B
C#
23 lines
456 B
C#
using Hncore.Infrastructure.DDD;
|
|
using System;
|
|
|
|
namespace Hncore.Pass.Vpn.Domain
|
|
{
|
|
public partial class AgentPriceEntity
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// <summary>
|
|
public int id { get; set; }
|
|
|
|
public int product_id { get; set; }
|
|
public int package_id { get; set; }
|
|
|
|
public int agent_id { get; set; }
|
|
|
|
public decimal price { get; set; }
|
|
|
|
public decimal refund { get; set; }
|
|
|
|
}
|
|
} |