Files
SPT-Server-Build/Core/Models/Eft/Health/OffraidHealRequestData.cs
T
2025-01-17 18:13:37 +00:00

25 lines
477 B
C#

using Core.Models.Eft.Common.Request;
namespace Core.Models.Eft.Health;
public record OffraidHealRequestData : BaseInteractionRequestData
{
public override string? Action { get; set; } = "Heal";
public string? Item { get; set; }
public BodyPart? Part { get; set; }
public int? Count { get; set; }
public int? Time { get; set; }
}
public enum BodyPart
{
Head,
Chest,
Stomach,
LeftArm,
RightArm,
LeftLeg,
RightLeg,
Common
}