- Created MemberCenter.Installer project with references to Infrastructure, Application, and Domain projects. - Added Program.cs with a basic console output. - Generated MemberCenterDbContextModelSnapshot for database schema representation.
14 lines
449 B
C#
14 lines
449 B
C#
namespace MemberCenter.Domain.Entities;
|
|
|
|
public sealed class NewsletterList
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid TenantId { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Status { get; set; } = "active";
|
|
public DateTimeOffset CreatedAt { get; set; } = DateTimeOffset.UtcNow;
|
|
|
|
public Tenant? Tenant { get; set; }
|
|
public List<NewsletterSubscription> Subscriptions { get; set; } = new();
|
|
}
|