21 lines
593 B
C#
21 lines
593 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SMGen.Data.DbModels
|
|
{
|
|
[Table("v_FamIngressi")]
|
|
public class FamIngressiViewModel
|
|
{
|
|
public int IdxFamigliaIngresso { get; set; } = 0;
|
|
public string DescrizioneIngresso { get; set; } = "";
|
|
public int numTipoEv { get; set; } = 0;
|
|
public int numMStati { get; set; } = 0;
|
|
public int numRighe { get; set; } = 0;
|
|
}
|
|
}
|