2024-11-13 18:18:28 +08:00

14 lines
220 B
C#

using System;
namespace efcore_to_freesql.Entitys
{
public class Topic1
{
public int Id { get; set; }
public string Title { get; set; }
public DateTime CreateTime { get; set; }
}
}