feat: implement core domain models, authentication service, and UI components for the attendance system
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user