9 lines
184 B
C#
9 lines
184 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Repair;
|
|
|
|
public class BaseRepairActionDataRequest
|
|
{
|
|
[JsonPropertyName("Action")]
|
|
public string Action { get; set; }
|
|
} |