using System; using System.Collections.Generic; namespace Workbench.Entity { public partial class CustomerUser { /// /// Reference to customer /// public long CustomerId { get; set; } /// /// Reference to user /// public string UserLoginName { get; set; } = null!; public virtual Customer Customer { get; set; } = null!; } }