28 lines
567 B
C#
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
|
|
}
|
|
} |