mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-09 10:25:32 +00:00
14 lines
271 B
Swift
14 lines
271 B
Swift
//
|
|
// LanguageResource.swift
|
|
// KeymanEngine
|
|
//
|
|
// Created by Joshua Horton on 8/16/19.
|
|
// Copyright © 2019 SIL International. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol LanguageResource {
|
|
var id: String { get }
|
|
var languageID: String { get }
|
|
}
|