This commit is contained in:
2026-07-20 18:41:53 +10:00
commit 95f3858755
6 changed files with 75 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
namespace helloapp;
public partial class User
{
public int Id { get; set; }
public string? Name { get; set; }
public int Age { get; set; }
}