diff options
author | JP Ungaretti <git@jungaretti.com> | 2023-03-01 11:10:34 +0300 |
---|---|---|
committer | JP Ungaretti <git@jungaretti.com> | 2023-03-01 11:10:34 +0300 |
commit | a091bc67ddee6f5b96aaf75b5bfab8b30fe0c41d (patch) | |
tree | 5cbf4752e3669df8daf42b95890eb8f37137f927 /test/dotnet/example_project/Movie.cs | |
parent | ab802885688efb5dd5410421ea2c3d1151d24e8c (diff) |
Add example_project
Diffstat (limited to 'test/dotnet/example_project/Movie.cs')
-rw-r--r-- | test/dotnet/example_project/Movie.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/dotnet/example_project/Movie.cs b/test/dotnet/example_project/Movie.cs new file mode 100644 index 0000000..9d549ef --- /dev/null +++ b/test/dotnet/example_project/Movie.cs @@ -0,0 +1,8 @@ +// See https://aka.ms/new-console-template for more information + +internal class Movie +{ + public string Name { get; set; } = "Default Name"; + public DateTime ReleaseDate { get; set; } + public List<string> Genres { get; set; } = new List<string>(); +} |