using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace ASC.CRM.ApiModels { public class SaveNumberSettingsInDto { public bool AutoGenerated { get; set; } public string Prefix { get; set; } public string Number { get; set; } } }