9 lines
260 B
C#
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;
|
|
}
|