feat: initial working version of service refs NOISSUE
Some checks failed
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m36s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Failing after 4m42s

This commit is contained in:
2025-04-14 22:03:58 +02:00
parent 2bf3258081
commit d04b453e6f
30 changed files with 1146 additions and 72 deletions

View File

@@ -2,9 +2,9 @@ using Microsoft.EntityFrameworkCore;
public class SongSuggestion
{
public int Id { get; set;}
public User User { get; set; }
public Song Song { get; set; }
public int Id { get; set; }
public User? User { get; set; }
public Song? Song { get; set; }
public DateTime Date { get; set; }
}