Dtos/PatternCustomerMasterDto.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ChatworkBulkSender.Dtos
{
    public class PatternCustomerMasterDto
    {
        /// <summary>
        /// 送信パターンID
        /// </summary>
        public int PatternId { get; set; }

        /// <summary>
        /// 管理番号(顧客番号など)
        /// </summary>
        public int ManagementNumber { get; set; }

        /// <summary>
        /// 登録日時
        /// </summary>
        public DateTime? CreatedDate { get; set; }

        /// <summary>
        /// 登録ユーザ
        /// </summary>
        public string CreatedBy { get; set; }
    }
}