14 lines
359 B
C#
14 lines
359 B
C#
using System.Drawing;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
namespace AGVControl.Models
|
|
{
|
|
public class MapText
|
|
{
|
|
public Point Location { get; set; }
|
|
public string Text { get; set; }
|
|
public Color TextColor { get; set; }
|
|
public Color BackgroundColor { get; set; }
|
|
public Font Font { get; set; }
|
|
}
|
|
} |