/
Edwar
/
cam-api-examples
Обзор
Документация
Войти
/
Edwar
/
cam-api-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PLMIntegration/PLMExtensionNet/project/main/src/Items/PLMProjectStructItem.cs
30 строк
846 B
rasilyabag
Расширение функционала PLM расширение, работа с директориями
05 май 2025, 20:30
05 май 2025, 20:30
294572d
Код
Авторство
О чём код?
using CAMAPI.Extension.PLM; namespace PLMIntegrarionExamples.Items; /// <summary> /// Represents a structure item of project within the PLM extension. /// </summary> public class PLMProjectStructItem : IPLMProjectStructItem { /// <summary> /// Gets or sets the unique identifier of the project structure item. /// </summary> public string Id { get; set; } = string.Empty; /// <summary> /// Gets or sets the name of the project structure item. /// </summary> public string Name { get; set; } = string.Empty; /// <summary> /// Gets or sets the type of the project structure item. /// </summary> public TPLMItemType Type { get; set; } /// <summary> /// Gets or sets the last modification time of the project structure item. /// </summary> public double TimeStamp { get; set; } }