Files
EF-core/helloapp/User.cs
T
2026-07-20 18:41:53 +10:00

14 lines
208 B
C#

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; }
}