Initial commit

This commit is contained in:
oscarz
2024-08-12 10:26:21 +08:00
parent 3637120e84
commit 3002510aaf
46 changed files with 1210 additions and 29 deletions

View File

@ -0,0 +1,22 @@
//
// DemoData.swift
// AIGrammar
//
// Created by oscar on 2024/4/2.
//
import Foundation
struct GrammarRes {
var tPlain : String
var tType : String
var tReason : String
var tCorrection : [String]
}
struct GrammarData {
var tInputText : String
var tCorrectText : String
var tResult : [GrammarRes]
}