zdk.objc
ZDKTranscriptLanguage.h
1//
2// ZDKTranscriptLanguage.h
3// ZDK
4//
5
6#ifndef ZDKTranscriptLanguage_h
7#define ZDKTranscriptLanguage_h
8
9#import <Foundation/Foundation.h>
10#import "ZDKZHandle.h"
11
12NS_ASSUME_NONNULL_BEGIN
13
19
24@property(nonatomic, readonly) NSString* _Nullable name;
25
30@property(nonatomic, readonly) NSString* _Nullable code;
31
32-(NSString*)handlesDescription;
33
34@end
35
36NS_ASSUME_NONNULL_END
37
38#endif
Banafo transcript language.
Definition: ZDKTranscriptLanguage.h:18
NSString *_Nullable name
Name of the language.
Definition: ZDKTranscriptLanguage.h:24
NSString *_Nullable code
ZDKETF language code tag.
Definition: ZDKTranscriptLanguage.h:30
Definition: ZDKZHandle.h:13