15 lines
351 B
C#
15 lines
351 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 DateOnly Date { get; set; }
|
||
|
}
|
||
|
}
|