aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJava.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Sof
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.CodeGeneration
{
    /// <summary>
    /// Represents a database entity Java code file.
    /// </summary>
    /// <seealso cref="Tango.CodeGeneration.Class" />
    public class EntityCodeFileJavaExtension : Class
    {
        /// <summary>
        /// Gets or sets the extends.
        /// </summary>
        public String Extends { get; set; }

        /// <summary>
        /// Gets or sets the name of the table.
        /// </summary>
        public String TableName { get; set; }

        /// <summary>
        /// Initializes a new instance of the <see cref="EntityCodeFileJavaExtension"/> class.
        /// </summary>
        /// <param name="name">The name.</param>
        public EntityCodeFileJavaExtension(String name, String extends) : base(name)
        {
            Extends = extends;
        }
    }
}