19 lines
518 B
C#
19 lines
518 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DbModels
|
|
{
|
|
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;
|
|
}
|
|
}
|