RobotNet/RobotNet.RobotShares/Models/RobotSearchExpressionModel.cs
2025-10-15 15:15:53 +07:00

9 lines
260 B
C#

namespace RobotNet.RobotShares.Models;
public class RobotSearchExpressionModel
{
public string MapName { get; set; } = string.Empty;
public string ModelName { get; set; } = string.Empty;
public string Expression { get; set; } = string.Empty;
}