Initial import
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user