using FreeSql.DataAnnotations;
using System;
using System.Collections.Generic;
namespace domain_01.Entitys {
///
/// 歌曲
///
public class Song {
public Guid Id { get; set; }
public Guid SingerId { get; set; }
public virtual Guid Singer { get; set; }
public string Name { get; set; }
public string Url { get; set; }
public virtual ICollection Albums { get; set; }
public DateTime RegTime { get; set; } = DateTime.Now;
}
}