AddressEditor.cs 337 B

123456789101112131415
  1. namespace InABox.Core
  2. {
  3. public class AddressEditor : BaseEditor
  4. {
  5. public bool ShowMapButton { get; set; }
  6. public AddressEditor(bool showMapButton)
  7. {
  8. ShowMapButton = showMapButton;
  9. }
  10. protected override BaseEditor DoClone() => new AddressEditor(ShowMapButton);
  11. }
  12. }