mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-05-22 15:26:29 +00:00
18 lines
421 B
C#
18 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PckStudio.Core.Json
|
|
{
|
|
internal class JsonRowAndColumn
|
|
{
|
|
[JsonProperty("row", Required = Required.Always)]
|
|
public int Row { get; set; }
|
|
[JsonProperty("column", Required = Required.Always)]
|
|
public int Column { get; set; }
|
|
}
|
|
}
|