aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Android_Studio/Tango.Web/src
ModeNameSize
d---------main108logstatsplain
@{ 
    Tango.CodeGeneration.EntityInheritedDTOCodeFile model = Model as Tango.CodeGeneration.EntityInheritedDTOCodeFile;
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.BL.DTO
{
    @if (model.Description != null)
    {
        <div>
        /// <summary>
        /// @(model.Description)
        /// </summary>
        </div>
    }
    public class @(model.Name) : @(model.BaseClass)
    {

    }
}