- using System.Collections.Generic;
- namespace TeamAAS.Communication.Models
- {
- /// <summary>
- /// 产品级全局变量快照:保存某产品的 Product 作用域变量列表。
- /// 存储路径:Products/<productName>/global_vars.json
- /// </summary>
- public class GlobalVarSnapshot
- {
- public List<GlobalVariableModel> Variables { get; set; } = new List<GlobalVariableModel>();
- }
- }
|