using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace FlexFramework.Excel
{
///
/// A collection of storing shared values
///
public sealed class SharedStringCollection : ReadOnlyCollection
{
public SharedStringCollection(IList list) : base(list)
{
}
}
}