14 lines
202 B
Swift
14 lines
202 B
Swift
//
|
|
// TokiPartsOfSpeech.swift
|
|
// Toki Trainer
|
|
//
|
|
// Created by Avery Ada Pace on 11/2/21.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct TokiPartOfSpeech: Decodable {
|
|
var pos: String
|
|
var definition: String
|
|
}
|