12 lines
342 B
C#
12 lines
342 B
C#
namespace MinAttest.Domain.Entities;
|
|
|
|
public class Employer
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string OrgNumber { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public ICollection<Attest> Attests { get; set; } = [];
|
|
public ICollection<EmployerUser> Users { get; set; } = [];
|
|
}
|