using System; using System.Collections.Generic; namespace Biskilog_Cloud.Shared.Models; public partial class TblUserActivity { public string Username { get; set; } = null!; public DateTime? LastActive { get; set; } public string? Workstation { get; set; } public DateTime LastModified { get; set; } }