14 lines
280 B
C#
14 lines
280 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class v_numero_gestiones_siniestros
|
|
{
|
|
public long NumeroGestiones { get; set; }
|
|
|
|
public int idsiniestro { get; set; }
|
|
}
|