Files
mini-ticket-system/trash.js
T

23 lines
688 B
JavaScript

// class Ticket {
// constructor(
// id,
// title,
// description,
// status,
// created_at,
// updated_at
// ) {
// this.id = id;
// this.title = title;
// this.description = description;
// this.status = status;
// this.created_at = created_at;
// this.updated_at = updated_at;
// }
// }
// var tickets = [
// new Ticket(0, "ticket 1", "some desc", Status.CLOSED, 1786438392, 1786438393),
// new Ticket(1, "ticket 2", "some other desc", Status.OPEN, 1786438394, 1786438395),
// new Ticket(2, "ticket 3", "some third desc", Status.OPEN, 1786438396, 1786438397)
// ];