Files
Asegasa.NET/bdAsegasa/db/caser__modelos.cs

20 lines
387 B
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAsegasa.db;
[AddINotifyPropertyChangedInterface]
public partial class caser__modelos
{
public int id { get; set; }
public string? MARCA { get; set; }
public string? MODELO { get; set; }
public string? FILLER { get; set; }
public DateTime? FECHA_ACTUALIZACION { get; set; }
}