using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Nuuru.Server.Models { public enum WatchTargetType { BooruPost = 0, ForumThread = 1 } public class Watch { public int Id { get; set; } public Guid UserId { get; set; } public ApplicationUser User { get; set; } = null!; public WatchTargetType TargetType { get; set; } public int TargetId { get; set; } public DateTime CreatedAt { get; set; } = DateTime.UtcNow; } }