Added database table data into configuration. Store saves is auto-handled. Added Action & Redemption stores.
This commit is contained in:
11
Store/Internal/DatabaseTable.cs
Normal file
11
Store/Internal/DatabaseTable.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace HermesSocketServer.Store.Internal
|
||||
{
|
||||
public class DatabaseTable
|
||||
{
|
||||
public required string TableName { get; set; }
|
||||
public required string[] KeyColumns { get; set; }
|
||||
public required string[] DataColumns { get; set; }
|
||||
public required IDictionary<string, string> PropertyMapping { get; set; }
|
||||
public IDictionary<string, string>? TypeMapping { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user