Skip to content

Commit

Permalink
add ChangeAware interface
Browse files Browse the repository at this point in the history
  • Loading branch information
SirCotare committed Sep 11, 2024
1 parent 3168920 commit 94faac5
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package it.aboutbits.springboot.toolbox.persistence;

import java.time.OffsetDateTime;

public interface ChangeAware {
OffsetDateTime getCreatedAt();

OffsetDateTime getUpdatedAt();

void setCreatedAt(OffsetDateTime createdAt);

void setUpdatedAt(OffsetDateTime updatedAt);
}

0 comments on commit 94faac5

Please sign in to comment.