18 lines
418 B
Java
18 lines
418 B
Java
package de.ul.swtp.modules.protocolmanagement;
|
|
|
|
import de.ul.swtp.modules.contactmanagement.Contact;
|
|
|
|
import java.security.Signature;
|
|
import java.sql.Timestamp;
|
|
import java.util.List;
|
|
|
|
public class Protocol {
|
|
private List<Contact> presentMembers;
|
|
private List<Contact> authors;
|
|
private List<ProtocolEntry> entries;
|
|
private Boolean isLocked;
|
|
private Timestamp protocolDate;
|
|
private Signature
|
|
|
|
}
|