14 lines
267 B
C#
14 lines
267 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Consulenza.WebTemplateModeler.Entity
|
|
{
|
|
public class SchedaTemplate
|
|
{
|
|
public int Id{get;set;}
|
|
public List<Option> Options { get; set; }
|
|
}
|
|
}
|