Add project data

This commit is contained in:
2025-12-30 02:22:44 +01:00
parent a6316b8b06
commit 747af63a29
2301 changed files with 67690 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
using DbController;
namespace Tabletop.Core.Models.Abstract
{
public abstract class ZoneBase
{
[CompareField("x")]
public string X { get; set; } = string.Empty;
[CompareField("y")]
public string Y { get; set; } = string.Empty;
[CompareField("width")]
public string Width { get; set; } = string.Empty;
[CompareField("height")]
public string Height { get; set; } = string.Empty;
public virtual Dictionary<string, object?> GetParameters()
{
return new Dictionary<string, object?>
{
{ "X", X },
{ "Y", Y },
{ "WIDTH", Width },
{ "HEIGHT", Height }
};
}
}
}