21 lines
571 B
C#
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; } = "";
|
|
}
|
|
}
|