refactor(db): remove ViewerClaimedTutorialGift — replaced by ViewerPresent.Status

This commit is contained in:
gamer147
2026-06-08 20:38:09 -04:00
parent fafd7ea183
commit 6098682162
2 changed files with 0 additions and 22 deletions

View File

@@ -1,14 +0,0 @@
namespace SVSim.Database.Models;
/// <summary>
/// Records that a viewer has claimed a specific tutorial gift present_id. Composite key
/// (ViewerId, PresentId) — viewer can't claim the same present twice.
/// </summary>
public class ViewerClaimedTutorialGift
{
public long ViewerId { get; set; }
public string PresentId { get; set; } = string.Empty;
public DateTime ClaimedAt { get; set; }
public Viewer Viewer { get; set; } = null!;
}