using System.ComponentModel.DataAnnotations; namespace SlpModularCms.Modules.Offerings.Models; public record CreateOfferingRequest( [Required, MaxLength(100)] string Title, [Required, MaxLength(500)] string Description, [Required, MaxLength(50)] string Price, [Required, MaxLength(100)] string PriceNote, [Required, FeaturesValidation] List Features, [Required, MaxLength(50)] string CtaLabel, bool Featured = false, [MaxLength(130)] string? Slug = null );