book--hacking-with-swift/challenges/apple-notes-imitation/Apple Notes Imitation/Source/Models/Note.swift

16 lines
265 B
Swift

//
// Note.swift
// Apple Notes Imitation
//
// Created by Brian Sipple on 2/4/19.
// Copyright © 2019 Brian Sipple. All rights reserved.
//
import Foundation
struct Note: Codable {
var title: String?
var body: String?
var lastUpdatedAt: Date?
}