2026-06-08 17:54:36 +08:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2026-06-08 16:57:44 +08:00
|
|
|
namespace QYZH.InteractiveMagazine.Models.Enum;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 宠物进化状态枚举
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum PetEvolutionStatusEnum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 未激活
|
|
|
|
|
/// </summary>
|
2026-06-08 17:54:36 +08:00
|
|
|
[Description("未激活")]
|
2026-06-08 16:57:44 +08:00
|
|
|
Inactive = 0,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 激活
|
|
|
|
|
/// </summary>
|
2026-06-08 17:54:36 +08:00
|
|
|
[Description("激活")]
|
2026-06-08 16:57:44 +08:00
|
|
|
Active = 1
|
|
|
|
|
}
|