UNPKG

py-uni

Version:

py-uni

17 lines (14 loc) 321 B
/** * 登录信息返回值 */ export class File { Attachment:string; FileName: string; constructor(options: { Attachment?: string; FileName?: string; } = {}) { this.Attachment = options.Attachment || ''; this.FileName = options.FileName || ''; } }