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