21 lines
290 B
TypeScript
Raw Permalink Normal View History

2022-11-29 23:02:06 +08:00
export default class GlobalConfig {
/**
code
*/
code: string;
/**
json序列化后
*/
val: string;
/**
*/
description: string;
constructor(code: string, val: string, desc: string) {
this.code = code;
this.val = val;
this.description = desc;
}
}