fix: rev db model, added missing entities and helper functions

This commit is contained in:
2025-05-18 03:51:50 +02:00
parent ad4743d68e
commit fc1ff88f3d
21 changed files with 1283 additions and 2146 deletions

View File

@@ -3,7 +3,7 @@
public class Organisation
{
public int OrganisationId { get; set; }
public required string UserId { get; set; }
public required int UserId { get; set; }
public required string Name { get; set; }
public string? Description { get; set; }
public string? Website { get; set; }