Initial commit: FieldLogger MAUI app with Maglink BLE support

Added Maglink RTK GNSS receiver integration with correct BLE UUIDs and device name filtering (ML-* prefix).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
brentperteet
2026-07-06 13:46:50 -05:00
commit b602b762c9
79 changed files with 5807 additions and 0 deletions

23
FieldLogger/Models/Job.cs Normal file
View File

@@ -0,0 +1,23 @@
using SQLite;
namespace FieldLogger.Models;
[Table("jobs")]
public sealed class Job
{
[PrimaryKey, AutoIncrement]
public int Id { get; set; }
[NotNull]
public string Name { get; set; } = "";
public string Notes { get; set; } = "";
public DateTime CreatedUtc { get; set; } = DateTime.UtcNow;
/// <summary>Reserved for MQTT sync: server-side job identifier once provisioned remotely.</summary>
public string? RemoteId { get; set; }
/// <summary>Reserved for MQTT sync: true once all points have been pushed to the server.</summary>
public bool Synced { get; set; }
}