Add project data
This commit is contained in:
20
Tabletop.Core/Models/SetupZone.cs
Normal file
20
Tabletop.Core/Models/SetupZone.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using DbController;
|
||||
using Tabletop.Core.Models.Abstract;
|
||||
|
||||
namespace Tabletop.Core.Models
|
||||
{
|
||||
public class SetupZone : ZoneBase
|
||||
{
|
||||
[CompareField("setupzone_id")]
|
||||
public int SetupZoneId { get; set; }
|
||||
|
||||
public override Dictionary<string, object?> GetParameters()
|
||||
{
|
||||
var baseParams = base.GetParameters();
|
||||
|
||||
baseParams["SETUPZONE_ID"] = SetupZoneId;
|
||||
|
||||
return baseParams;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user