mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
add examples domain_01
This commit is contained in:
11
Examples/domain_01/Entitys/AlbumSong.cs
Normal file
11
Examples/domain_01/Entitys/AlbumSong.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
using System;
|
||||
|
||||
namespace domain_01.Entitys {
|
||||
public class AlbumSong {
|
||||
|
||||
public Guid AlbumId { get; set; }
|
||||
|
||||
public Guid SongId { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user