GlobalVarSnapshot.cs 423 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace TeamAAS.Communication.Models
  3. {
  4. /// <summary>
  5. /// 产品级全局变量快照:保存某产品的 Product 作用域变量列表。
  6. /// 存储路径:Products/&lt;productName&gt;/global_vars.json
  7. /// </summary>
  8. public class GlobalVarSnapshot
  9. {
  10. public List<GlobalVariableModel> Variables { get; set; } = new List<GlobalVariableModel>();
  11. }
  12. }