1. 文案处理后端服务迁移(此版本之前的后端服务持续到12月1日) 2. 新增默认动图方式 3. (聚合推文)实现原创分类的图生视频(runway,luma,可灵) 4. 修复软件内配音 5. 删除旧的原创生图(原创,SD反推,MJ反推等操作在聚合推文中) 6. 导出剪映适配(视频) 7. 新增四个单句推理模式
17 lines
329 B
TypeScript
17 lines
329 B
TypeScript
import Realm, { ObjectSchema } from 'realm'
|
|
|
|
export class OptionsModel extends Realm.Object<OptionsModel> {
|
|
key: string;
|
|
value: string;
|
|
type: string;
|
|
static schema: ObjectSchema = {
|
|
name: 'Options',
|
|
properties: {
|
|
key: 'string',
|
|
value: 'string',
|
|
type: 'string'
|
|
},
|
|
primaryKey: 'key'
|
|
}
|
|
}
|