16 lines
405 B
C#
16 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Entidades;
|
|
|
|
public partial class Garante : Usuario
|
|
{
|
|
public string Lugartrabajo { get; set; } = null!;
|
|
|
|
public string Domiciliolaboral { get; set; } = null!;
|
|
|
|
public virtual ICollection<Contrato> Idcontratos { get; set; } = new List<Contrato>();
|
|
|
|
public virtual ICollection<Grupo> Idgrupos { get; set; } = new List<Grupo>();
|
|
}
|