using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace FindAndDrive.Domain.Models.Entities; public class Client { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] [Key] public Guid ClientId { get; set; } public string ClientName { get; set; } public bool Active { get; set; } public DateTime CreatedAt { get; set; } public DateTime? ModifiedAt { get; set; } public virtual ICollection ApiKeys { get; set; } public virtual ICollection Applicant { get; set; } }