Files
AlquilaFacil/Entidades/Servicio.cs

12 lines
194 B
C#

using System;
using System.Collections.Generic;
namespace Entidades;
public partial class Servicio
{
public int Id { get; set; }
public string Descripcion { get; set; } = null!;
}