phronCare/Models/Models/PhOhArcadocumentType.cs
Leandro Hernan Rojas 9940189a93
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m17s
Upgrade de DbContext y Patch Customers
2025-04-26 18:15:25 -03:00

21 lines
420 B
C#

using System;
using System.Collections.Generic;
namespace Models.Models;
/// <summary>
/// Catálogo oficial de tipos de comprobantes AFIP.
/// </summary>
public partial class PhOhArcadocumentType
{
public int Id { get; set; }
public string Code { get; set; } = null!;
public string Description { get; set; } = null!;
public string? Letter { get; set; }
public bool Isactive { get; set; }
}