mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-07-01 18:08:16 +08:00
add RESTful demo
This commit is contained in:
11
FreeSql.RESTful.Demo/Entity/Song.cs
Normal file
11
FreeSql.RESTful.Demo/Entity/Song.cs
Normal file
@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user