add RESTful demo

This commit is contained in:
28810
2019-02-13 12:06:43 +08:00
parent 1c0dedb87e
commit 45bc234160
9 changed files with 225 additions and 0 deletions

View 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; }
}
}