using _0_Framework.Application.Enums;
using System;
using System.Collections.Generic;
using _0_Framework.Domain;
namespace CompanyManagment.App.Contracts.SmsResult;
///
/// مدل ایجاد تنظیمات پیامک
///
public class CreateSmsSetting
{
///
/// نوع پیامک
///
public TypeOfSmsSetting TypeOfSmsSetting { get; set; }
///
/// عدد روز از ماه
///
public int DayOfMonth { get; set; }
///
/// ساعت
///
public TimeSpan TimeOfDay { get; set; }
}
///
/// ویرایش تنظیمات پیامک
///
public class EditSmsSetting : CreateSmsSetting
{
///
/// آی دی
///
public long Id { get; set; }
///
/// فعال/غیرفعال
///
public bool IsActive { get; set; }
///
/// نمایش ساعت و دقیقه
///
public string TimeOfDayDisplay { get; set; }
}
///
/// ویو مدل تنظیمات پیامک
///
public class SmsSettingViewModel
{
///
/// لیست تنظیمات پیامک
///
public List EditSmsSettings { get; set; }
}
///
/// لیست تنظیمات پیامک خودکار
///
public class SmsSettingDto
{
///
/// آی دی
///
public long Id { get; set; }
///
/// عدد روز از ماه
///
public int DayOfMonth { get; set; }
///
/// نمایش ساعت و دقیقه
///
public string TimeOfDayDisplay { get; set; }
}
public class CreateSmsSettingDto
{
///
/// عدد روز از ماه
///
public int DayOfMonth { get; set; }
///
/// نمایش ساعت و دقیقه
///
public string TimeOfDayDisplay { get; set; }
}