ImageCommand.java 233 B

123456789101112
  1. /*
  2. * Copyright (c) Andrew Grant of Carrick Software 28/03/2025, 09:58. All rights reserved.
  3. *
  4. */
  5. package scot.carricksoftware.grants.commands.images;
  6. public interface ImageCommand {
  7. Long getId();
  8. void setId(Long id);
  9. }