8 lines
237 B
C#
8 lines
237 B
C#
namespace RobotNet10.FleetManager.Shared.Models;
|
|
|
|
public record RobotInstantActionModel
|
|
{
|
|
public string RobotId { get; set; } = string.Empty;
|
|
public RobotNet.VDA5050.InstantAction.Action Action { get; set; } = new();
|
|
}
|