Skip to content

Instantly share code, notes, and snippets.

View bljubisic's full-sized avatar

Bratislav Ljubisic bljubisic

View GitHub Profile
@bljubisic
bljubisic / DataStructure.swift
Created June 15, 2019 17:15
QuickToDo Gist
public struct Item: Codable{
let name: String
let count: Int
let uploadedToICloud: Bool
let done: Bool
let shown: Bool
let createdAt: Date
}
extension Item {