Files
mapo-core/MP.Data/DatabaseModels/vSelCauScartoModel.cs
T
2024-02-26 14:17:08 +01:00

22 lines
624 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; } = "";
public bool isEnabled { get; set; } = false;
}
}