Files
CDMUtility/CDMUtil/Common/FilePathInfo.cs

18 lines
320 B
C#
Raw Normal View History

2026-02-23 14:35:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CDM.Interop.Revit
{
class FilePathInfo
{
public string Path { get; set; }
public string FileName { get; set; }
public string Category { get; set; }
}
}