Skip to content

Commit

Permalink
Move Person fields into separate packages
Browse files Browse the repository at this point in the history
  • Loading branch information
aureliony committed Feb 27, 2024
1 parent dfb1e3d commit db5664d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/seedu/address/model/person/fields/Field.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package seedu.address.model.person.fields;public interface Field {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package seedu.address.model.person.fields.mandatory;public interface MandatoryField {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package seedu.address.model.person.fields.optional;public interface OptionalField {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package seedu.address.model.person.fields.optional;public class Tags {
}

0 comments on commit db5664d

Please sign in to comment.