19 lines
517 B
C#
19 lines
517 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("AnagPagam")]
|
|
public partial class AnagPagamModel
|
|
{
|
|
public string Pagamento { get; set; } = null!;
|
|
public int NumGg { get; set; }
|
|
public bool Dffm { get; set; }
|
|
public string DescrPag { get; set; } = null!;
|
|
}
|
|
}
|