DocSpace-client/products/ASC.CRM/Server/ApiModels/SaveNumberSettingsInDto.cs

15 lines
320 B
C#
Raw Normal View History

2021-03-05 20:06:49 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
2021-03-09 15:37:16 +00:00
namespace ASC.CRM.ApiModels
2021-03-05 20:06:49 +00:00
{
public class SaveNumberSettingsInDto
{
public bool AutoGenerated { get; set; }
public string Prefix { get; set; }
public string Number { get; set; }
}
}