pub type TextNote {
TextNote(
title: String,
is_archived: Bool,
is_trashed: Bool,
text: String,
created_at: Time,
edited_at: Time,
)
}
Constructors
-
TextNote(
title: String,
is_archived: Bool,
is_trashed: Bool,
text: String,
created_at: Time,
edited_at: Time,
)