19 lines
470 B
C#
19 lines
470 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Eft.Common.Request;
|
|
|
|
namespace Core.Models.Eft.Health;
|
|
|
|
public class OffraidEatRequestData : BaseInteractionRequestData
|
|
{
|
|
[JsonPropertyName("Action")]
|
|
public string? Action { get; set; } = "Eat";
|
|
|
|
[JsonPropertyName("item")]
|
|
public string? Item { get; set; }
|
|
|
|
[JsonPropertyName("count")]
|
|
public int? Count { get; set; }
|
|
|
|
[JsonPropertyName("time")]
|
|
public int? Time { get; set; }
|
|
} |