using System; using InABox.Configuration; namespace Comal.Classes { public class StockMovementSettings : IUserConfigurationSettings { public StockMovementSettings() { View = 1; EndDate = DateTime.Today; StartDate = DateTime.Today.AddDays(-6); ShowBatches = false; BatchesWidth = 200.0F; } public int View { get; set; } public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } public bool ShowBatches { get; set; } public double BatchesWidth { get; set; } } }