namespace Hotline.Share.Dtos.CallCenter
{
public record AddIvrCategoryDto
{
///
/// 分类名称
///
public string Name { get; set; }
///
/// 备注
///
public string? Remark { get; set; }
}
public record UpdateIvrCategoryDto : AddIvrCategoryDto
{
public string Id { get; set; }
}
}