aboutsummaryrefslogtreecommitdiff
path: root/test/dotnet/example_project/Movie.cs
diff options
context:
space:
mode:
authorJP Ungaretti <git@jungaretti.com>2023-03-01 11:10:34 +0300
committerJP Ungaretti <git@jungaretti.com>2023-03-01 11:10:34 +0300
commita091bc67ddee6f5b96aaf75b5bfab8b30fe0c41d (patch)
tree5cbf4752e3669df8daf42b95890eb8f37137f927 /test/dotnet/example_project/Movie.cs
parentab802885688efb5dd5410421ea2c3d1151d24e8c (diff)
Add example_project
Diffstat (limited to 'test/dotnet/example_project/Movie.cs')
-rw-r--r--test/dotnet/example_project/Movie.cs8
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>();
+}