AHAQ_QGNH/AnQing/Model/IMAGEINFO.cs
2025-05-19 09:31:47 +08:00

18 lines
374 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AnQing.Model
{
public class IMAGEINFO
{
public int x { get; set; }
public int y { get; set; }
public int width { get; set; }
public int height { get; set; }
public int index { get; set; }
}
}