You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
433 B
12 lines
433 B
// 本文件由FirstUI授权予内蒙古晟誉网络科技有限责任公司(手机号:1 514 8228 10 8,身份证尾号:1R6T39)专用,请尊重知识产权,勿私下传播,违者追究法律责任。
|
|
export default class WebGLActiveInfo {
|
|
className = 'WebGLActiveInfo';
|
|
|
|
constructor({
|
|
type, name, size
|
|
}) {
|
|
this.type = type;
|
|
this.name = name;
|
|
this.size = size;
|
|
}
|
|
}
|