Feat Backend ERP 1

This commit is contained in:
2026-01-07 11:34:25 -03:00
parent 81aea41e69
commit fdb221d0fa
29 changed files with 1364 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
namespace SIGCM.Domain.Entities;
public class ExternalClientMapping
{
public int LocalUserId { get; set; }
public required string ExternalSystemName { get; set; } // 'Tango', 'SAP', 'CustomBilling'
public required string ExternalClientId { get; set; }
public string? AdditionalData { get; set; } // JSON
public DateTime LastSyncedAt { get; set; }
}