Change field viewer

This commit is contained in:
Evgeny Redikultsev
2025-12-13 20:13:45 +05:00
parent 681ab17781
commit f937b9f373
31 changed files with 730 additions and 246 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace FieldVisualizer.Entities.Values
{
public class ValueLabel : IValueLabel
{
public bool IsActive { get; set; } = true;
public string Value { get; set; } = string.Empty;
public double X { get; set; }
public double Y { get; set; }
}
}