2019-03-05 18:16:25 +08:00

12 lines
183 B
C#

using FreeSql.DataAnnotations;
using System;
namespace domain_01.Entitys {
public class AlbumSong {
public Guid AlbumId { get; set; }
public Guid SongId { get; set; }
}
}