feat/Update_Controllers_to_Allow_for_Premium_Membership

This commit is contained in:
cesnimda
2026-08-03 09:17:28 +02:00
parent de937d25dc
commit c3f4a57195
187 changed files with 26062 additions and 991 deletions
+16
View File
@@ -0,0 +1,16 @@
namespace JobTrackerApi.Models;
public sealed class UserNotification
{
public Guid Id { get; set; }
public string OwnerUserId { get; set; } = string.Empty;
public Guid? OperationId { get; set; }
public UserOperation? Operation { get; set; }
public string Kind { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public string Message { get; set; } = string.Empty;
public string? LinkPath { get; set; }
public DateTime CreatedAtUtc { get; set; }
public DateTime? ReadAtUtc { get; set; }
public DateTime? DismissedAtUtc { get; set; }
}