| using System;using InABox.Configuration;namespace Comal.Classes{    public class JobScreenSettings : IUserConfigurationSettings    {        public Guid CurrentJob { get; set; }        public Guid JobStatus { get; set; }        public ScreenViewType ViewType { get; set; }        public double AnchorWidth { get; set; }    }}
 |