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

@@ -3,6 +3,8 @@ using Microsoft.EntityFrameworkCore;
public class User
{
public int UserId { get; set; }
public string SignalId { get; set; }
public string Name { get; set; }
public string? SignalMemberId { get; set; }
public string? Name { get; set; }
public string? NickName { get; set; }
public bool IsIntroduced { get; set; }
}