18 lines
320 B
C#
18 lines
320 B
C#
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; }
|
|
}
|
|
}
|