18 lines
460 B
C#
18 lines
460 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 OffraidEatRequestData : InventoryBaseActionRequestData
|
|
{
|
|
[JsonPropertyName("item")]
|
|
public MongoId Item { get; set; }
|
|
|
|
[JsonPropertyName("count")]
|
|
public int? Count { get; set; }
|
|
|
|
[JsonPropertyName("time")]
|
|
public long? Time { get; set; }
|
|
}
|