12121
This commit is contained in:
36
Service/Application.Domain.Entity/model/EquAwakenData.cs
Normal file
36
Service/Application.Domain.Entity/model/EquAwakenData.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
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; } }
|
||||
}
|
||||
Reference in New Issue
Block a user