2019-02-13 12:06:43 +08:00

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