2024-10-17 16:08:02 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace Posechaemost.Data.LocalData.Entity
|
|
|
|
{
|
|
|
|
public class PresenceLocalEntity{
|
2024-10-24 11:13:46 +00:00
|
|
|
public required DateOnly Date {get; set;}
|
2024-10-17 16:08:02 +00:00
|
|
|
public int ClassNumber {get; set;}
|
2024-10-24 11:13:46 +00:00
|
|
|
public bool IsAttendence {get; set;} = true;
|
2024-10-17 16:08:02 +00:00
|
|
|
public required Guid UserGuid {get; set;}
|
|
|
|
}
|
|
|
|
}
|