Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
notes-app
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Abhay Menon
notes-app
Merge requests
!3
Constructor
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Constructor
Classes
into
main
Overview
1
Commits
3
Pipelines
2
Changes
2
Merged
Hoang Dang
requested to merge
Classes
into
main
2 years ago
Overview
1
Commits
3
Pipelines
2
Changes
2
Expand
merge classes
1
0
Merge request reports
Compare
main
version 1
be4a2b77
2 years ago
main (base)
and
version 1
latest version
c45128e0
3 commits,
2 years ago
version 1
be4a2b77
1 commit,
2 years ago
2 files
+
31
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
utilities/src/main/kotlin/notes/multi/utilities/Folder.kt
0 → 100644
+
15
−
0
Options
package
notes.multi.utilities
import
java.time.LocalDate
import
java.time.LocalDateTime
class
Folder
(
var
title
:
String
=
"Untitled"
,
var
description
:
String
=
"Empty"
,
val
author
:
String
=
"?"
,
// User class?
val
dateCreated
:
LocalDate
?
=
LocalDate
.
now
(),
var
lastModified
:
LocalDateTime
?
=
LocalDateTime
.
now
(),
var
notes
:
MutableList
<
Note
>?
=
null
)
{
// add/remove notes
// update last modified
}
\ No newline at end of file
Loading