[성현모] KeficoMailService 추가, KMS 인증서 컨피그 추가

This commit is contained in:
SHM
2026-02-23 10:29:45 +09:00
parent 3f94a7b2b2
commit e60d499fa3
22 changed files with 445 additions and 19 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KeficoMailService
{
public class Address
{
public string AddressMail { get; set; } = string.Empty;
public string AddressName { get; set; } = string.Empty;
}
}