Rough dictionary list working

This commit is contained in:
Avery Pace
2021-11-03 14:21:22 -04:00
parent 4f342ce48d
commit 731a71904a
10 changed files with 1980 additions and 90 deletions

View File

@@ -0,0 +1,13 @@
//
// TokiPartsOfSpeech.swift
// Toki Trainer
//
// Created by Avery Ada Pace on 11/2/21.
//
import Foundation
struct TokiPartOfSpeech: Decodable {
var pos: String
var definition: String
}