12345678910111213 |
- /*
- * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
- *
- */
- package scot.carricksoftware.grantswriter.writer.latex.sections;
- import scot.carricksoftware.grantswriter.domains.people.Person;
- public interface PersonSection {
- @SuppressWarnings({"unused", "EmptyMethod"})
- void write(Person person);
- }
|