Demo/Data/LocalData/Entity/Presence.cs

15 lines
388 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Posechaemost.Data.LocalData.Entity
{
public class PresenceLocalEntity{
public DateOnly Date {get; set;}
public int ClassNumber {get; set;}
public bool IsAttendence {get; set;}
public required Guid UserGuid {get; set;}
}
}