Ejemplo n.º 1
0
        public int GetMinWidth(ImageType type)
        {
            var option = ImageOptions.FirstOrDefault(i => i.Type == type);

            return(option == null ? 0 : option.MinWidth);
        }
Ejemplo n.º 2
0
        public int GetLimit(ImageType type)
        {
            var option = ImageOptions.FirstOrDefault(i => i.Type == type);

            return(option == null ? 1 : option.Limit);
        }