phronCare/Models/Models/PhSFormSeriesNextNumber.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

25 lines
549 B
C#

using System;
using System.Collections.Generic;
namespace Models.Models;
/// <summary>
/// Mantiene el siguiente número correlativo para cada FormSeries.
/// </summary>
public partial class PhSFormSeriesNextNumber
{
public int Id { get; set; }
/// <summary>
/// FK a PhS_FormSeries.
/// </summary>
public int FormseriesId { get; set; }
/// <summary>
/// Próximo número correlativo.
/// </summary>
public int Nextnumber { get; set; }
public virtual PhSFormSeries Formseries { get; set; } = null!;
}