15 lines
295 B
C#
15 lines
295 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FieldVisualizer.Entities.Values
|
|
{
|
|
public interface IValueLabel
|
|
{
|
|
bool IsActive { get; set; }
|
|
string Value { get; set; }
|
|
double X { get; set; }
|
|
double Y { get; set; }
|
|
}
|
|
}
|