Files
Samuele Locatelli 366b865e14 Update filtro selezione documenti:
- ok primi 3 sel tendina
2023-01-24 20:05:15 +01:00

17 lines
356 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SHERPA.Data.DbModels
{
public partial class vSelCliModel
{
[Key]
public int value { get; set; } = 0;
public string label { get; set; } = "";
}
}