GroupView不要.cshtml后缀
智能大石头 编写于 2024-09-26 23:59:14
NewLife.Cube
using System;
using System.Collections.Generic;
using NewLife.Data;

namespace NewLife.Cube.Extensions
{
    class ItemsExtend : IExtend
    {
        public IDictionary<Object, Object> Items { get; set; }

        public Object this[String key]
        {
            get => Items[key];
            set => Items[key] = value;
        }
    }
}