14 lines
264 B
C#
14 lines
264 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace bdHerramientaCACOA.db;
|
|
|
|
public partial class urlspermitidas
|
|
{
|
|
public int idUrlsPermitidas { get; set; }
|
|
|
|
public string? descripcion { get; set; }
|
|
|
|
public string url { get; set; } = null!;
|
|
}
|