36 lines
772 B
C#
36 lines
772 B
C#
namespace Application.Domain.Entity;
|
|
|
|
public class EquAwakenData
|
|
{
|
|
private System.Int32 _lev;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.Int32 lev
|
|
{ get { return this._lev; } set { this._lev = value; } }
|
|
|
|
private System.Int32 _success;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.Int32 success
|
|
{ get { return this._success; } set { this._success = value; } }
|
|
|
|
private List<TowerNeed> _need;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<TowerNeed> need
|
|
{ get { return this._need; } set { this._need = value; } }
|
|
|
|
private List<AttrItem> _attr;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<AttrItem> attr
|
|
{ get { return this._attr; } set { this._attr = value; } }
|
|
} |