Files
mapo-core/MP.Data/DatabaseModels/vSelCauScartoModel.cs
T
Samuele Locatelli 3212a3eacb Completata pag scarti
2023-10-16 16:49:55 +02:00

21 lines
571 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace MP.Data.DatabaseModels
{
public partial class vSelCauScartoModel
{
[Key]
public string value { get; set; } = "";
public string label { get; set; } = "";
public string cssClass { get; set; } = "";
public string icona { get; set; } = "";
}
}