18 lines
386 B
C#
18 lines
386 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Domain.Request
|
|||
|
{
|
|||
|
public class AttendanceUpdateRequest
|
|||
|
{
|
|||
|
public DateTime Date { get; set; }
|
|||
|
public int LessonNumber { get; set; }
|
|||
|
public int StudentId { get; set; }
|
|||
|
public int NewTypeAttendance { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
}
|