File size: 446 Bytes
6aa9047
 
 
 
 
 
 
 
 
 
 
 
 
fa79069
6aa9047
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Row {
    Name: string | null = null;
    Orgs: string[] = [];
    Authors: string[] = [];
    Tags: string[] = [];
    Paper: string | null = null;
    Code: string | null = null;
    Space: string | null = null;
    Model: string | null = null;
    Dataset: string | null = null;
    Project: string | null = null;
    License: string | null = null;
    Date: string | null = null;
    Added: string | null = null;
}

export default Row;