16 lines
306 B
C#
16 lines
306 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class caser__tipos_combustible
|
|
{
|
|
public int id { get; set; }
|
|
|
|
public string? CODIGO { get; set; }
|
|
|
|
public string? COMBUSTIBLE { get; set; }
|
|
}
|