24 lines
606 B
C#
24 lines
606 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WorkFlowCheck.DL.Entities
|
|
{
|
|
public class NumberGeneratorTemplateDate
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int NumberGeneratorTemplateId { get; set; }
|
|
public virtual NumberGeneratorTemplate NumberGeneratorTemplate { get; set; }
|
|
|
|
public int Year { get; set; }
|
|
public int? Month { get; set; } // csak ha YearAndMonth
|
|
|
|
public int CurrentNumber { get; set; }
|
|
public string LastGeneratedNumber { get; set; }
|
|
}
|
|
|
|
}
|