kreta/Kreta.BusinessLogic/HelperClasses/EmailElerhetosegCo.cs
2024-03-13 00:33:46 +01:00

21 lines
455 B
C#

using Kreta.Enums.ManualEnums;
namespace Kreta.BusinessLogic.HelperClasses
{
public class EmailElerhetosegCo
{
public int? Id { get; set; }
public string TextBoxId { get; set; }
public int Tipus { get; set; }
public string EmailCim { get; set; }
public bool Alapertelmezett { get; set; }
public bool IsPublic { get; set; }
public ElerhetosegStatusEnum Status { get; set; }
}
}