Files
StructureHelper/StructureHelperLogics/NdmCalculations/Primitives/IVisualProperty.cs
2023-01-04 18:43:11 +05:00

19 lines
445 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace StructureHelperLogics.NdmCalculations.Primitives
{
public interface IVisualProperty
{
bool IsVisible { get; set; }
Color Color { get; set; }
bool SetMaterialColor { get; set; }
int ZIndex { get; set; }
double Opacity { get; set; }
}
}