Place.java 281 B

123456789101112131415
  1. /*
  2. * Copyright (c) 02 Feb 2025, Andrew Grant of Carrick Software .
  3. * All rights reserved.
  4. */
  5. package scot.carricksoftware.grants.domains.places;
  6. import jakarta.persistence.*;
  7. import scot.carricksoftware.grants.BaseEntity;
  8. @Entity
  9. public class Place extends BaseEntity {
  10. }