using System.ComponentModel; namespace QYZH.InteractiveMagazine.Models.Enum; /// /// 用户宠物状态枚举 /// public enum UserPetStatusEnum { /// /// 未激活 /// [Description("未激活")] Inactive = 0, /// /// 激活 /// [Description("激活")] Active = 1, /// /// 休眠中 /// [Description("休眠中")] Sleeping = 2 }