using System.ComponentModel.DataAnnotations; namespace Nuuru.Server.Models { public enum SiteEffectType { Banner = 0, CustomCss = 1 } public class SiteEffect { public int Id { get; set; } public SiteEffectType Type { get; set; } [MaxLength(500)] public string Content { get; set; } = string.Empty; public Guid UserId { get; set; } public ApplicationUser User { get; set; } = null!; public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public DateTime ExpiresAt { get; set; } } }