36 lines
762 B
C#
36 lines
762 B
C#
namespace Application.Domain.Entity;
|
|
|
|
public class EquAwaken
|
|
{
|
|
private System.String _atId;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.String atId
|
|
{ get { return this._atId; } set { this._atId = value; } }
|
|
|
|
private System.Int32 _lev;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.Int32 lev
|
|
{ get { return this._lev; } set { this._lev = value; } }
|
|
|
|
private System.String _name;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public System.String name
|
|
{ get { return this._name; } set { this._name = value; } }
|
|
|
|
private List<AttrItem> _awaken;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<AttrItem> awaken
|
|
{ get { return this._awaken; } set { this._awaken = value; } }
|
|
} |