19 lines
502 B
C#
19 lines
502 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace SHERPA.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("OhAlloc")]
|
|
public partial class OhAllocModel
|
|
{
|
|
public int AnnoRif { get; set; }
|
|
public string Oh { get; set; } = null!;
|
|
public int Qta { get; set; }
|
|
public string Note { get; set; } = null!;
|
|
}
|
|
}
|