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