17 lines
388 B
C#
17 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace data.RemoteData.RemoteDatabase.DAO
|
|
{
|
|
public class MarkAbsenceRequest
|
|
{
|
|
public int UserId { get; set; }
|
|
public int GroupId { get; set; }
|
|
public DateOnly Date { get; set; }
|
|
public int LessonNumber { get; set; }
|
|
}
|
|
}
|