aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.CodeGeneration/EntityCodeFileJavaExtension.cs
blob: 99ea437a6bf8dbeb1c57c4a11ed6196d396002d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
        }
    }
}