mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
13 lines
220 B
C#
13 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; }
|
|
}
|
|
} |