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

17 lines
472 B
C#
Raw Permalink Normal View History

2024-11-11 11:35:05 +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 GroupAttendanceStatistics
{
public int UserCount { get; set; }
public int TotalLessons { get; set; }
public double AttendancePercentage { get; set; }
public List<UserAttendance> UserAttendanceDetails { get; set; } = new List<UserAttendance>();
}
}