mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-14 15:02:50 +08:00
13 lines
214 B
C#
13 lines
214 B
C#
using FreeSql.DataAnnotations;
|
|
|
|
namespace restful.Entitys
|
|
{
|
|
public class Song
|
|
{
|
|
|
|
[Column(IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
}
|
|
}
|