Files
Backend-Api/Company.Domain/EmployerAccountAgg/EmployerAccount.cs
2024-07-05 21:36:15 +03:30

15 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Company.Domain.empolyerAgg;
namespace Company.Domain.EmployerAccountAgg;
public class EmployerAccount
{
public long EmployerId { get; set; }
public Employer Employer { get; set; }
public long AccountId { get; set; }
}