33 lines
835 B
C#
33 lines
835 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace line_gestao_api.Models
|
|
{
|
|
public class UserData : ITenantEntity
|
|
{
|
|
[Key]
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid TenantId { get; set; }
|
|
|
|
public int Item { get; set; }
|
|
|
|
public string? Linha { get; set; }
|
|
public string? Cliente { get; set; }
|
|
|
|
public string? Cpf { get; set; }
|
|
public string? Rg { get; set; }
|
|
|
|
public DateTime? DataNascimento { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
public string? Endereco { get; set; }
|
|
|
|
public string? Celular { get; set; }
|
|
public string? TelefoneFixo { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|
|
}
|