using System; using System.Collections.Generic; using System.Linq; using AshMind.Web.Snapshots.Sizing; namespace AshMind.Web.Snapshots { public static class WebSnapshotSizes { public static IWebSnapshotSize Auto { get; set; } static WebSnapshotSizes() { Auto = new WebSnapshotAutoSize(); } public static IWebSnapshotSize Fixed(int width, int height) { return new WebSnapshotFixedSize(width, height); } } }