The following code in C # ... `public int? ParentId { get; set; }` ... results in the following in Typescript ... `parentId: number;` ... while the correct one should be: `parentId?: number;`