mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-14 15:02:50 +08:00
18 lines
402 B
C#
18 lines
402 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace efcore_to_freesql.Entitys
|
|
{
|
|
|
|
public class Topic2
|
|
{
|
|
[Key]
|
|
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
|
|
public int Id { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
}
|
|
} |