kmCustomReportsNET/Models/MdlEmailAddress.cs

15 lines
304 B
C#
Raw Normal View History

2025-10-17 06:03:43 -04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace kmCustomReportsNET;
internal class MdlEmailAddress
{
public string EmailAddress { get; set; } = string.Empty;
public string DisplayName { get; set; } = string.Empty;
}