20 lines
397 B
C#
20 lines
397 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdAntifraude.db;
|
|
|
|
public partial class ESPECIFICOS
|
|
{
|
|
public int IDESPECIFICO { get; set; }
|
|
|
|
public int? IDRPTDES { get; set; }
|
|
|
|
public decimal? IMPORTE_M { get; set; }
|
|
|
|
public decimal? IMPORTE_EXTRAS { get; set; }
|
|
|
|
public decimal? IMPORTE_TOTAL { get; set; }
|
|
|
|
public decimal? IMPORTE_DEDICACION { get; set; }
|
|
}
|