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 Attests { get; set; } = []; public ICollection Users { get; set; } = []; }