16 lines
302 B
C#
16 lines
302 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Consulenza.WebTemplateModeler.Entity
|
|
{
|
|
public class Tabs
|
|
{
|
|
public int IdModello { get; set; }
|
|
public int NumTab { get; set; }
|
|
public String Titolo { get; set; }
|
|
}
|
|
}
|
|
|