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

17 lines
372 B
C#
Raw 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.domain.Models
{
public class UsersForPresence
{
public string FIO{ get; set; }
public int LessonNumber { get; set; }
public DateOnly Date { get; set; }
public bool isAttendance { get; set; }
}
}