CustomerUser.cs 475 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Workbench.Entity
  4. {
  5. public partial class CustomerUser
  6. {
  7. /// <summary>
  8. /// Reference to customer
  9. /// </summary>
  10. public long CustomerId { get; set; }
  11. /// <summary>
  12. /// Reference to user
  13. /// </summary>
  14. public string UserLoginName { get; set; } = null!;
  15. public virtual Customer Customer { get; set; } = null!;
  16. }
  17. }