DeliveryScreenSettings.cs 334 B

123456789101112131415
  1. using InABox.Configuration;
  2. namespace Comal.Classes
  3. {
  4. public class DeliveryScreenSettings : IUserConfigurationSettings
  5. {
  6. public DeliveryScreenSettings()
  7. {
  8. AnchorWidth = 500F;
  9. }
  10. public ScreenViewType ViewType { get; set; }
  11. public double AnchorWidth { get; set; }
  12. }
  13. }