mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-24 19:52:51 +08:00
11 lines
198 B
C#
11 lines
198 B
C#
using FreeSql.DataAnnotations;
|
|
|
|
namespace FreeSql.RESTful.Demo.Entity {
|
|
public class Song {
|
|
|
|
[Column(IsIdentity = true)]
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
}
|
|
}
|