Files
cod-backend/Sources/App/Content/DashboardItem.swift
2021-10-19 06:33:31 -05:00

24 lines
365 B
Swift

//
// DashboardItem.swift
// App
//
// Created by Michael Simard on 1/9/21.
//
import Foundation
import Fluent
import Vapor
struct DashboardItem: Content {
var codTrackerId: String
var title:String
var content:String
var title2:String? = nil
var content2:String? = nil
var sortOrder: Int
var backgroundColor = "004999"
}