22 lines
342 B
Swift
22 lines
342 B
Swift
|
//
|
||
|
// TwitterSymbol.swift
|
||
|
// Account
|
||
|
//
|
||
|
// Created by Maurice Parker on 4/18/20.
|
||
|
// Copyright © 2020 Ranchero Software, LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
struct TwitterSymbol: Codable {
|
||
|
|
||
|
let name: String?
|
||
|
let indices: [Int]?
|
||
|
|
||
|
enum CodingKeys: String, CodingKey {
|
||
|
case name = "name"
|
||
|
case indices = "indices"
|
||
|
}
|
||
|
|
||
|
}
|