9 lines
254 B
C#
9 lines
254 B
C#
namespace RobotNet.MapShares.Models;
|
|
|
|
public class ElementExpressionModel
|
|
{
|
|
public string MapName { get; set; } = string.Empty;
|
|
public string ModelName { get; set; } = string.Empty;
|
|
public string Expression { get; set; } = string.Empty;
|
|
}
|