16 lines
357 B
C#
16 lines
357 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Company.Domain.EmployeeAgg;
|
|
|
|
namespace Company.Domain.EmployeeAccountAgg;
|
|
|
|
public class EmployeeAccount
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public Employee Employee { get; set; }
|
|
public long AccountId { get; set; }
|
|
|
|
} |