Files
2024-07-05 21:36:15 +03:30

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; }
}