aktueller stand

This commit is contained in:
Meik
2026-02-10 16:53:06 +01:00
parent f89e2de60d
commit 7392454a63
8 changed files with 340 additions and 86 deletions

View File

@@ -34,6 +34,7 @@ namespace FasdCockpitCommunicationDemo
public string TileKey { get; set; } = "TicketsNew";
public bool UseRoleScope { get; set; }
public Guid? UserId { get; set; }
public string ActivityType { get; set; }
public string DisplayNamePrefix { get; set; } = "TCK";
public string Summary { get; set; }
public string StatusId { get; set; } = "New";
@@ -49,6 +50,7 @@ namespace FasdCockpitCommunicationDemo
public Guid UserId { get; set; }
public string TileKey { get; set; }
public bool UseRoleScope { get; set; }
public string ActivityType { get; set; }
public string DisplayName { get; set; }
public string Summary { get; set; }
public string StatusId { get; set; }
@@ -167,6 +169,7 @@ namespace FasdCockpitCommunicationDemo
TileKey = source.TileKey,
UseRoleScope = source.UseRoleScope,
UserId = source.UserId,
ActivityType = source.ActivityType,
DisplayNamePrefix = source.DisplayNamePrefix,
Summary = source.Summary,
StatusId = source.StatusId,
@@ -188,6 +191,7 @@ namespace FasdCockpitCommunicationDemo
UserId = source.UserId,
TileKey = source.TileKey,
UseRoleScope = source.UseRoleScope,
ActivityType = source.ActivityType,
DisplayName = source.DisplayName,
Summary = source.Summary,
StatusId = source.StatusId,