Skip to content

Commit c9c011c

Browse files
committed
refactor: update PreviewTokenModel properties to use nullable strings
1 parent 3acf880 commit c9c011c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Contentstack.Management.Core/Models/Token/PreviewTokenModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ public class PreviewTokenModel
1313
/// The name of the preview token.
1414
/// </summary>
1515
[JsonPropertyName("name")]
16-
public string Name { get; set; }
16+
public string? Name { get; set; }
1717

1818
/// <summary>
1919
/// The description of the preview token.
2020
/// </summary>
2121
[JsonPropertyName("description")]
22-
public string Description { get; set; }
22+
public string? Description { get; set; }
2323
}
2424
}

0 commit comments

Comments
 (0)