aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Basic/Resources/template.csx
Path not found
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.MachineStudio.Common.Notifications;

namespace Tango.MachineStudio.DB.ViewModels
{
    public class FiberShapesViewVM : DbTableViewModel<FiberShape>
    {
        public FiberShapesViewVM(INotificationProvider notification) : base(notification)
        {
        }
    }
}