All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m17s
21 lines
420 B
C#
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; }
|
|
}
|