aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Controllers/DataStoreController.cs
Path not found
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.MachineStudio.RML.Models
{
    public class CctModel
    {
        public String Guid { get; set; }
        public String FileName { get; set; }
        public bool IsNew { get; set; }
        public byte[] Data { get; set; }
    }
}