2020-05-26 15:21:47 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2020-05-29 00:33:49 +08:00
|
|
|
|
namespace AntDesign
|
2020-05-26 15:21:47 +08:00
|
|
|
|
{
|
|
|
|
|
public class TransferItem
|
|
|
|
|
{
|
|
|
|
|
public string Key { get; set; } = "";
|
|
|
|
|
|
|
|
|
|
public string Title { get; set; } = "";
|
|
|
|
|
|
|
|
|
|
public string Description { get; set; } = "";
|
|
|
|
|
|
|
|
|
|
public bool Disabled { get; set; }
|
|
|
|
|
|
|
|
|
|
private readonly IDictionary<string, object> _properties = new Dictionary<string, object>();
|
|
|
|
|
|
|
|
|
|
public object this[string index]
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _properties[index];
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
_properties[index] = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|