Files
BirthList/src/BirthList.Domain/Entities/RegistrySettings.cs
T
Arne Moerman c1b11603e8
Build and Push Docker Image / build-and-push (push) Successful in 1m14s
Initial Blazor birth registry app, theming, and services
Implemented a Blazor Web App (.NET 8) for a public-by-link birth registry platform, following project guidelines. Added domain entities, EF Core context, and Blazor components for authentication, registry management, and public views. Introduced core services for registries, theming, user context, platform owner bootstrapping, and SMTP email. Included static assets (Bootstrap, favicon), launch settings, Dockerfile, CI workflow, and deployment configs. Added bootstrap.min.css.map for improved CSS debugging.
2026-05-14 11:49:47 +02:00

12 lines
319 B
C#

namespace BirthList.Domain.Entities;
public class RegistrySettings
{
public Guid RegistryId { get; set; }
public string? BankAccountIban { get; set; }
public string? BankAccountBic { get; set; }
public string? BankAccountDisplayName { get; set; }
public Registry Registry { get; set; } = null!;
}