23 lines
671 B
C#
23 lines
671 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_FamStati")]
|
|
public class FamStatiViewModel
|
|
{
|
|
public int IdxFamiglia { get; set; } = 0;
|
|
public string Descrizione { get; set; } = "";
|
|
public bool HasIOB { get; set; } = false;
|
|
public bool HasUDI { get; set; } = false;
|
|
public int numTipoEv { get; set; } = 0;
|
|
public int numMStati { get; set; } = 0;
|
|
public int numRighe { get; set; } = 0;
|
|
}
|
|
}
|