11 lines
218 B
C#
11 lines
218 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace SVSim.Database.Models.Config;
|
|
|
|
[Owned]
|
|
public class ChallengeConfig
|
|
{
|
|
public bool UseTwoPickPremiumCard { get; set; }
|
|
public long TwoPickSleeveId { get; set; }
|
|
}
|