7 lines
221 B
C#
7 lines
221 B
C#
namespace RobotNet.RobotShares.Models;
|
|
|
|
public class RobotInstantActionModel
|
|
{
|
|
public string RobotId { get; set; } = string.Empty;
|
|
public RobotShares.VDA5050.InstantAction.Action Action { get; set; } = new();
|
|
} |