presence_api/data/RemoteData/RemoteDatabase/DAO/AttendanceInputModel.cs

18 lines
490 B
C#
Raw Permalink Normal View History

2024-11-18 12:13:53 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace data.RemoteData.RemoteDatabase.DAO
{
public class AttendanceInputModel
{
public int GroupId { get; set; }
public int UserId { get; set; }
public DateOnly Date { get; set; }
public int LessonNumber { get; set; }
public bool IsAttendance { get; set; } // True - посещал, False - не посещал
}
}