friendlist #12

Merged
v4l3n71n merged 5 commits from friendlist into master 2023-01-16 20:31:00 +00:00
Showing only changes of commit b6fc5783c9 - Show all commits

View File

@ -0,0 +1,20 @@
package com.covas.Entity;
import java.time.LocalDateTime;
import java.util.Collection;
import io.quarkus.mongodb.panache.PanacheMongoEntity;
import io.quarkus.mongodb.panache.common.MongoEntity;
@MongoEntity(collection="friend")
public class FriendEntity extends PanacheMongoEntity {
public String owner;
public Collection<String> friends;
public LocalDateTime created_at;
public LocalDateTime updated_at;
public LocalDateTime deleted_at;
}