using System.ComponentModel.DataAnnotations; namespace line_gestao_api.Models; public class Setor : ITenantEntity { public Guid Id { get; set; } = Guid.NewGuid(); public Guid TenantId { get; set; } [MaxLength(160)] public string Nome { get; set; } = string.Empty; public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; public ICollection MobileLines { get; set; } = new List(); }