Files
StructureHelper/StructureHelper/Windows/ViewModels/NdmCrossSections/IPrimitiveViewModelLogic.cs
2023-02-12 23:38:24 +05:00

14 lines
394 B
C#

using StructureHelper.Infrastructure;
using StructureHelper.Infrastructure.UI.DataContexts;
namespace StructureHelper.Windows.ViewModels.NdmCrossSections
{
public interface IPrimitiveViewModelLogic : ICRUDViewModel<PrimitiveBase>
{
RelayCommand SetToFront { get; }
RelayCommand SetToBack { get; }
int PrimitivesCount { get; }
void Refresh();
}
}