mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
12 lines
183 B
C#
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; }
|
|
}
|
|
}
|