mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-23 11:12:50 +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; }
|
|
}
|
|
}
|