PlaceTextCommand.java 349 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) Andrew Grant of Carrick Software 30/03/2025, 10:42. All rights reserved.
  3. *
  4. */
  5. package scot.carricksoftware.grants.commands.text;
  6. import scot.carricksoftware.grants.domains.places.Place;
  7. public interface PlaceTextCommand {
  8. Long getId();
  9. void setId(Long id);
  10. Place getPlace();
  11. void setPlace(Place place);
  12. }