33 lines
657 B
C#
33 lines
657 B
C#
using System.Text.Json.Serialization;
|
|
using SPTarkov.Server.Core.Models.Common;
|
|
using SPTarkov.Server.Core.Models.Eft.Inventory;
|
|
|
|
namespace SPTarkov.Server.Core.Models.Eft.Health;
|
|
|
|
public record OffraidHealRequestData : InventoryBaseActionRequestData
|
|
{
|
|
[JsonPropertyName("item")]
|
|
public MongoId Item { get; set; }
|
|
|
|
[JsonPropertyName("part")]
|
|
public string? Part { get; set; }
|
|
|
|
[JsonPropertyName("count")]
|
|
public int? Count { get; set; }
|
|
|
|
[JsonPropertyName("time")]
|
|
public long? Time { get; set; }
|
|
}
|
|
|
|
public enum BodyPart
|
|
{
|
|
Head,
|
|
Chest,
|
|
Stomach,
|
|
LeftArm,
|
|
RightArm,
|
|
LeftLeg,
|
|
RightLeg,
|
|
Common,
|
|
}
|