using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.CodeGeneration
{
///
/// Represents a database entity Java code file.
///
///
public class EntityCodeFileJavaExtension : Class
{
///
/// Gets or sets the extends.
///
public String Extends { get; set; }
///
/// Gets or sets the name of the table.
///
public String TableName { get; set; }
///
/// Initializes a new instance of the class.
///
/// The name.
public EntityCodeFileJavaExtension(String name, String extends) : base(name)
{
Extends = extends;
}
}
}