Skip to content

Commit

Permalink
feat: Added Form super class
Browse files Browse the repository at this point in the history
  • Loading branch information
miguel-merlin committed Mar 4, 2024
1 parent ea71f35 commit 3f4dcbf
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/main/java/com/sitblueprint/admin/model/Form.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.sitblueprint.admin.model;

import java.time.LocalDateTime;

public class Form {
private String name;
private String email;
private LocalDateTime dateCreated;
}

0 comments on commit 3f4dcbf

Please sign in to comment.