feat: normalize subscription architecture, integrate pgvector, and implement Stripe webhook subscription management.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace NexusReader.Application.DTOs.User;
|
||||
|
||||
public record SubscriptionPlanDto
|
||||
{
|
||||
public int Id { get; init; }
|
||||
public string Name { get; init; } = string.Empty;
|
||||
public int AITokenLimit { get; init; }
|
||||
public decimal MonthlyPrice { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user