You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SCJMapper-V2/Actions/Json/JActionmap.cs

31 lines
657 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization;
namespace SCJMapper_V2.Actions.Json
{
[DataContract]
class JActionmap
{
/*
{
"actionmap": "amapname", "actionmap_tx": "translated_amapname",
"actions": [
]
}
*/
[DataMember( Name = "actionmap_tx" )]
public string ActionmapTX { get; set; }
[DataMember( Name = "actionmap" )]
public string Actionmap { get; set; } = "";
[DataMember( Name = "actions" )]
public List<JAction> Actions { get; set; } = new List<JAction>( );
}
}