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 UserPetStatusEnum
|
|
|
|
|
{
|
|
|
|
|
/// <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,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 休眠中
|
|
|
|
|
/// </summary>
|
2026-06-08 17:54:36 +08:00
|
|
|
[Description("休眠中")]
|
2026-06-08 16:57:44 +08:00
|
|
|
Sleeping = 2
|
|
|
|
|
}
|