using System; using System.Collections.Generic; namespace XMainClient { internal interface IFashionStorageSelect { bool Active { get; } bool Select { get; set; } bool ActivateAll { get; } bool RedPoint { get; } int GetID(); int GetCount(); void SetCount(uint count); string GetName(); string GetLabel(); List GetItems(); uint[] GetFashionList(); List GetAttributeCharm(); void Refresh(); } }