usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;namespaceTango.CodeGeneration{/// <summary>/// Represents the Tango DAO Java code file./// </summary>/// <seealso cref="Tango.CodeGeneration.CodeFile" />publicclassTangoDAOJavaFile:CodeFile{/// <summary>/// Gets or sets the class name./// </summary>publicStringName{get;set;}/// <summary>/// Gets or sets the entities./// </summary>publicList<TangoDAOEntity>Entities{get;set;}/// <summary>/// Initializes a new instance of the <see cref="TangoDAOJavaFile"/> class./// </summary>publicTangoDAOJavaFile(){Entities=newList<TangoDAOEntity>();}/// <summary>/// Represents a Tango DAO Java entity./// </summary>publicclassTangoDAOEntity{/// <summary>/// Gets or sets the entity name./// </summary>publicStringName{get;set;}/// <summary>/// Gets or sets the name of the table.publicStringTableName{get;set;}}}}