1234567891011121314151617 |
- /*
- * Copyright (c) Andrew Grant of Carrick Software 30/03/2025, 10:24. All rights reserved.
- *
- */
- package scot.carricksoftware.grantswriter.domains.text;
- import jakarta.persistence.Entity;
- import scot.carricksoftware.grantswriter.BaseEntity;
- @Entity
- public class DocumentText extends BaseEntity {
- }
|