/* * This work is licensed under the Creative Commons Attribution 2.5 License. * To view a copy of this license, visit http://creativecommons.org/licenses/by/2.5/ * or send a letter to Creative Commons, 543 Howard Street, 5th Floor, * San Francisco, California, 94105, USA. * * Original developer: David Betz * */ using System; namespace Squid.Web.Controls { internal class InfoBlockData { public String DataSource { get; set; } public Int32 BlockHeight { get; set; } public Int32 BlockWidth { get; set; } public Boolean ShowBorder { get; set; } public BlockSize BlockSize { get; set; } public BlockType BlockType { get; set; } public InfoBlockData() { this.BlockSize = BlockSize.Regular; this.ShowBorder = true; } public InfoBlockData(BlockSize size) { this.BlockSize = size; this.ShowBorder = true; } public InfoBlockData(BlockSize size, Boolean showBorder) { this.BlockSize = size; this.ShowBorder = showBorder; } } }