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 EntityCodeFileJava : Class { /// /// Gets or sets the name of the entity. /// public String EntityName { get; set; } /// /// Gets or sets the extends. /// public String Extends { get; set; } /// /// Gets or sets the name of the table. /// public String TableName { get; set; } /// /// Gets or sets the table fields. /// public List Fields { get; set; } /// /// Initializes a new instance of the class. /// /// The code file name. public EntityCodeFileJava(String name) : base(name) { Fields = new List(); } } }