mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
- Added investments as a derivative of assets - Added profile state flags which can retain basic states like IsSponsored - Added profile state data using EF Core's JSON functionality so it should automatically serialize / deserialize the accompanying model for convenience (OnModelCreating code commented out due to the models not yet having a DbSet as I won't bake them in until KasinoShop is ready)
9 lines
221 B
C#
9 lines
221 B
C#
namespace KfChatDotNetBot.Models;
|
|
|
|
/// <summary>
|
|
/// Holds state information for the kasino shop
|
|
/// </summary>
|
|
public class KasinoShopStateModel
|
|
{
|
|
public required decimal DefaultHouseEdgeModifier { get; set; } = 0;
|
|
} |