namespace Application.Domain.Entity;
public class CheckTowerNeeds
{
private bool _result;
public bool result
{ get { return this._result; } set { this._result = value; } }
private System.Int32 _isDeal;
///
/// 0不可交易1可交易
///
public System.Int32 isDeal
{ get { return this._isDeal; } set { this._isDeal = value; } }
private System.Int32 _isGive;
///
/// 0不可交易1可交易
///
public System.Int32 isGive
{ get { return this._isGive; } set { this._isGive = value; } }
private List _Needs;
public List Needs
{ get { return this._Needs; } set { this._Needs = value; } }
}