aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/Templates/EntityCodeFileJava.cshtml
blob: d9200a718d338d853f2f8fc6e35e764367cd3a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
1
package com.twine.tango.dal.entities;

import com.raizlabs.android.dbflow.annotation.Table;
import com.twine.tango.dal.TangoDB;

@@Table(name = "@(Model.TableName)", database = TangoDB.class, cachingEnabled = true)
public class @(Model.Name) extends @(Model.Extends)
{

    
}