Started working on backend

This commit is contained in:
2025-02-28 16:56:48 +01:00
parent 1e5b17c4ef
commit 55be2f1e88
9 changed files with 101 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
namespace WorkTime.Api.Models;
public class TimeEntry {
public Guid Owner { get; set; }
public DateTime RegisteredAt { get; set; }
public EntryType Type { get; set; }
public bool IsMoba { get; set; }
}
public enum EntryType {
Login = 0,
Logout = 1,
StartDrive = 2,
EndDrive = 3
}