366b865e14
- ok primi 3 sel tendina
17 lines
363 B
C#
17 lines
363 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 vSelGruppiModel
|
|
{
|
|
[Key]
|
|
public string value { get; set; } = "";
|
|
public string label { get; set; } = "";
|
|
}
|
|
}
|