Ejemplo n.º 1
0
        public static bool Zoom(this DirectoryConfig c)
        {
            if (c.Art == true)
            {
                return(false);
            }

            return(Str.Equals(c.Zoom, "True") || Str.Equals(c.Zoom, "Any"));
        }
Ejemplo n.º 2
0
        public static bool Small(this DirectoryConfig c)
        {
            if (c.Art == true)
            {
                return(false);
            }

            return(c.Zoom == null || Str.Equals(c.Zoom, "False") || Str.Equals(c.Zoom, "Any"));
        }
Ejemplo n.º 3
0
 public static bool Art(this DirectoryConfig c)
 {
     return(c.Art == true);
 }