-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rodrigo Cesar
committed
May 23, 2024
1 parent
f486755
commit 01af36e
Showing
2 changed files
with
24 additions
and
143 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.Runtime.Serialization; | ||
|
||
namespace TestClass | ||
{ | ||
/// <summary> | ||
/// Sample class comment. | ||
/// </summary> | ||
public class TestClass | ||
{ | ||
/// <summary> | ||
/// Sample comment. | ||
/// </summary> | ||
public int IntProperty { get; set; } | ||
|
||
public string StringProperty { get; set; } | ||
|
||
public DateTime DateTimeProperty { get; set; } | ||
|
||
public bool BooleanProperty { get; set; } | ||
} | ||
} |