presence_api/data/LocalData/Entity/Presence.cs
2024-11-11 14:35:05 +03:00

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; }
}
}