Pack opening

This commit is contained in:
gamer147
2026-05-24 02:03:13 -04:00
parent bdff142d16
commit 79209bd70b
41 changed files with 37320 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.EntityFrameworkCore;
namespace SVSim.Database.Models;
/// <summary>One entry of <c>cardpack_banner_list</c> in /pack/info. Owned by PackConfigEntry.</summary>
[Owned]
public class PackBannerEntry
{
public string BannerName { get; set; } = string.Empty;
public string DialogTitle { get; set; } = string.Empty;
}