/
Edwar
/
cam-api-examples
Обзор
Документация
Войти
/
Edwar
/
cam-api-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PLMIntegration/PLMExtensionNet/project/main/src/Parameters/Connection/PLMConnectionParameter.cs
29 строк
871 B
rasilyabag
Расширение функционала PLM расширение, работа с директориями
05 май 2025, 20:30
05 май 2025, 20:30
294572d
Код
Авторство
О чём код?
using CAMAPI.Extension.PLM; namespace PLMIntegrarionExamples.Parameters; /// <summary> /// Represents a connection parameter used within the PLM extension. /// </summary> public class PLMConnectionParameter : IPLMConnectionParameter { /// <summary> /// Gets or sets the unique identifier of the connection parameter. /// </summary> public string Id { get; set; } = string.Empty; /// <summary> /// Gets or sets the display name of the connection parameter. /// </summary> public string Name { get; set; } = string.Empty; /// <summary> /// Gets or sets the default value of the connection parameter. /// </summary> public string DefaultValue { get; set; } = string.Empty; /// <summary> /// Gets or sets the order in which the connection parameter appears. /// </summary> public int Order { get; set; } }