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; }
    }
}