6c3cf425f2
- gestione backup conf app OK - gestione tab salvate come json OK - gestione IOB OK - gestione zip + pwd OK - gestione upload OK (debug su DEV, poi in prod)
22 lines
519 B
C#
22 lines
519 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.AppAuth.Models
|
|
{
|
|
[Table("ListValues")]
|
|
public partial class ListValues
|
|
{
|
|
#region Public Properties
|
|
|
|
public string FieldName { get; set; }
|
|
public string Label { get; set; }
|
|
public int? Ordinal { get; set; }
|
|
public string TableName { get; set; }
|
|
public string Value { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |