Files
mapo-core/MP.Core/DTO/SelEventDTO.cs
T
2026-02-24 19:11:58 +01:00

28 lines
567 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.Core.DTO
{
public class SelEventDTO
{
#region Public Constructors
public SelEventDTO(int idx, string descr)
{
this.IdxEv = idx;
this.Descript = descr;
}
#endregion Public Constructors
#region Public Properties
public string Descript { get; set; } = "";
public int IdxEv { get; set; } = 0;
#endregion Public Properties
}
}