2024-04-03 14:54:21 +04:00

17 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectDumpTruck.CollectionGenericObject;
public class StorageCollection<T>
where T : class
{
private Dictionary<string, ICollectionGenericObject<T>> _storages;
public List<string>Keys => _storages.Keys.ToList();
}