mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-03 06:37:14 +08:00
21 lines
383 B
Swift
21 lines
383 B
Swift
//
|
|
// IssueReferencedCell.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 7/9/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import SnapKit
|
|
|
|
final class IssueReferencedCommitCell: AttributedStringCell {
|
|
|
|
// MARK: Public API
|
|
|
|
func configure(_ model: IssueReferencedCommitModel) {
|
|
set(attributedText: model.attributedText)
|
|
}
|
|
|
|
}
|