验证码测试
智能大石头 authored at 2025-12-25 18:06:05
346.00 B
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;
        }
    }
}