18 lines
491 B
C#
18 lines
491 B
C#
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; }
|
|
public int TrafficId { get; set; }
|
|
public TrafficEntity Traffic { get; set; }
|
|
public int LessonNumber { get; set; }
|
|
public DateOnly Date { get; set; }
|
|
}
|
|
}
|