28 lines
714 B
C#
28 lines
714 B
C#
using System;
|
|
using System.Data.Entity;
|
|
using System.Linq;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace SHERPA.BBM.DatabaseModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
/// <summary>
|
|
/// Tabella FluxCounters
|
|
/// </summary>
|
|
[Table("FluxCounters")]
|
|
public class FluxCountersModel
|
|
{
|
|
#region Public Properties
|
|
|
|
[Key, Column("CodCounter"), MaxLength(50)]
|
|
public string CodCounter { get; set; } = "CNT.0000";
|
|
|
|
[Column("LastNum")]
|
|
public int LastNum { get; set; } = 0;
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |