Files
the-cycle/src/Prospect.Server.Api/Models/Unreal/Table.cs
T
2025-02-24 01:06:32 +02:00

10 lines
220 B
C#

using System.Text.Json.Serialization;
public class UDataTable {
[JsonPropertyName("DataTable")]
public string DataTable { get; set; }
[JsonPropertyName("RowName")]
public string RowName { get; set; }
}