19 lines
463 B
C#
19 lines
463 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace data.domain.Models
|
|||
|
{
|
|||
|
public class PresenceLocalEntity
|
|||
|
{
|
|||
|
public required int UserId { get; set; }
|
|||
|
public required int GroupId { get; set; }
|
|||
|
public bool IsAttedance { get; set; } = true;
|
|||
|
public required DateTime Date { get; set; }
|
|||
|
|
|||
|
public required int LessonNumber { get; set; }
|
|||
|
}
|
|||
|
}
|