You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
464 B

using System;
using PetaPoco;
namespace Pingchuan.BeijingSafeguard.Model
{
[TableName("gmapnetcache")]
public class GmapNetCache
{
[Column("Type")]
public int Type { get; set; }
[Column("Zoom")]
public int Zoom { get; set; }
[Column("X")]
public int X { get; set; }
[Column("Y")]
public int Y { get; set; }
[Column("Tile")]
public byte[] Tile { get; set; }
}
}