24 lines
603 B
C#
24 lines
603 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Core.Objects
|
|
{
|
|
public class StCheckOverride
|
|
{
|
|
#region Public Properties
|
|
|
|
public bool CanForce { get; set; } = false;
|
|
public string CodGruppo { get; set; } = "";
|
|
public string CodTipo { get; set; } = "";
|
|
public int IdxST { get; set; } = 0;
|
|
public int Num { get; set; } = 0;
|
|
public int Oggetto { get; set; } = 0;
|
|
public string Utente { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
}
|