using System.Collections.Generic; namespace TEAMModelOS.SDK.PngQuant { public class LookupData { public LookupData(int granularity) { Lookups = new List(); Tags = new int[granularity, granularity, granularity, granularity]; } public IList Lookups { get; private set; } public int[, , ,] Tags { get; private set; } } }