17 lines
371 B
Java
17 lines
371 B
Java
package model;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
public class Rappel {
|
|
private int id;
|
|
private String titre;
|
|
private String contenu;
|
|
private LocalDateTime date;
|
|
|
|
public Rappel(int id, String titre, String contenu, LocalDateTime date) {
|
|
this.id = id;
|
|
this.titre = titre;
|
|
this.contenu = contenu;
|
|
this.date = date;
|
|
}
|
|
} |