6c2e92d785
- modifiche DB e models - pagine in cui inserire
23 lines
567 B
C#
23 lines
567 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
|
|
{
|
|
[Table("AnagOp")]
|
|
public partial class AnagOpModel
|
|
{
|
|
#region Public Properties
|
|
[Key]
|
|
public string CodOp { get; set; } = "ND";
|
|
|
|
public string Description { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |