AHAQ_QGNH/AnQing/Model/IMAGEINFO.cs

18 lines
374 B
C#
Raw Permalink Normal View History

2025-05-19 09:31:47 +08:00
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; }
}
}