18 lines
427 B
C#
18 lines
427 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Eft.Common.Request;
|
|
using Core.Models.Eft.Inventory;
|
|
|
|
namespace Core.Models.Eft.Health;
|
|
|
|
public record OffraidEatRequestData : InventoryBaseActionRequestData
|
|
{
|
|
[JsonPropertyName("item")]
|
|
public string? Item { get; set; }
|
|
|
|
[JsonPropertyName("count")]
|
|
public int? Count { get; set; }
|
|
|
|
[JsonPropertyName("time")]
|
|
public long? Time { get; set; }
|
|
}
|