13 lines
229 B
C#
13 lines
229 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Asistencia.Models;
|
|
|
|
public class Curso
|
|
{
|
|
[Key]
|
|
public int IdCursos { get; set; }
|
|
|
|
[MaxLength(200)]
|
|
public string NombreCurso { get; set; } = string.Empty;
|
|
}
|