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

@@ -0,0 +1,13 @@
namespace WebApp.Entities
{
public class Message
{
public int MessageId { get; set; }
public int EventType { get; set; }
public int VolunteerId { get; set; }
public int OrganizationId { get; set; }
public bool IsMsgFromVolunteer { get; set; }
public DateTime IsoDate { get; set; }
public string? Content { get; set; }
}
}