mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-23 03:02:51 +08:00
12 lines
233 B
C#
12 lines
233 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FreeSql.RESTful.Demo.Entity {
|
|
public class Song {
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
}
|
|
}
|