mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-18 12:38:23 +08:00
15 lines
266 B
Swift
15 lines
266 B
Swift
//
|
|
// MarkdownCheckboxModel.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 12/16/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct MarkdownCheckboxModel {
|
|
let checked: Bool
|
|
let originalMarkdownRange: NSRange
|
|
}
|