PersonSection.java 332 B

12345678910111213
  1. /*
  2. * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
  3. *
  4. */
  5. package scot.carricksoftware.grantswriter.writer.latex.sections;
  6. import scot.carricksoftware.grantswriter.domains.people.Person;
  7. public interface PersonSection {
  8. @SuppressWarnings({"unused", "EmptyMethod"})
  9. void write(Person person);
  10. }