2024-12-05 07:31:49 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace domain.Entity
|
|
|
|
{
|
|
|
|
public class PresenceEntity
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public int StudentId { get; set; }
|
|
|
|
public UserEntity Student { get; set; }
|
|
|
|
public int SubjectId { get; set; }
|
|
|
|
public SubjectEntity Subject { get; set; }
|
2024-12-10 05:26:38 +00:00
|
|
|
public int TrafficId { get; set; }
|
|
|
|
public TrafficEntity Traffic { get; set; }
|
|
|
|
public int LessonNumber { get; set; }
|
2024-12-05 07:31:49 +00:00
|
|
|
public DateOnly Date { get; set; }
|
|
|
|
}
|
|
|
|
}
|