add examples domain_01

This commit is contained in:
28810
2019-03-05 18:16:25 +08:00
parent 45ba67ed15
commit f9fef12d37
14 changed files with 280 additions and 1 deletions

View File

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace domain_01.Entitys
{
/// <summary>
/// 专辑
/// </summary>
public class Album
{
public Guid Id { get; set; }
public string Name { get; set; }
public virtual ICollection<Song> Songs { get; set; }
public DateTime PublishTime { get; set; }
}
}