Adds 2 units and docs for unit 3. nfr-requirements plan

This commit is contained in:
2026-06-29 22:18:37 +02:00
parent 0e01ca1e1c
commit c156107cb1
126 changed files with 15204 additions and 80199 deletions
@@ -0,0 +1,12 @@
namespace SlpModularCms.Modules.Availability.Data.Entities;
public class MasterRegistration
{
public static readonly Guid SingletonId = new("00000000-0000-0000-0000-000000000001");
public Guid Id { get; set; }
public string MasterUrl { get; set; } = string.Empty;
public string ApiKey { get; set; } = string.Empty;
public DateTimeOffset RegisteredAt { get; set; }
public DateTimeOffset? LastContactedAt { get; set; }
}