using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SQLite
{
    public interface IDbBase
    {
        Int64 ID { get; set; }
    }
}