18 lines
420 B
C#
18 lines
420 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Domain.Request
|
|||
|
{
|
|||
|
public class AttendanceRequest
|
|||
|
{
|
|||
|
public DateOnly Date { get; set; }
|
|||
|
public string Subject { get; set; }
|
|||
|
public int LessonNumber { get; set; }
|
|||
|
public int StudentId { get; set; }
|
|||
|
public int TypeAttendance { get; set; }
|
|||
|
}
|
|||
|
}
|