zhangyuekai
2024-08-08 16f7eb9214a612777cdc3a92d12b28a44cde1259
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HStation.RevitDev.RevitToBimface.Service
{
    public class BimfaceUploadService
    {
        public delegate void UpdateStep(int step);
        public UpdateStep UpdateStepDelegate;
 
        public delegate void CompletedTask();
        public CompletedTask CompletedTaskDelegate;
 
        public void Upload(string filePath)
        {
 
        }
    }
}