Merge pull request 'В CompanyTypeDto добавлены 2 свойства для того, чтобы в админке была возможность редактировать порядок и метку "является контактом"' (#78) from fix/well-contacts into dev

Reviewed-on: http://test.digitaldrilling.ru:8080/DDrilling/AsbCloudServer/pulls/78
This commit is contained in:
Никита Фролов 2023-07-14 17:55:38 +05:00
commit ee4d7e27d1

View File

@ -13,5 +13,15 @@
/// </summary>
public string Caption { get; set; } = null!;
/// <summary>
/// Порядок
/// </summary>
public int Order { get; set; }
/// <summary>
/// Является ли контактом
/// </summary>
public bool IsContact { get; set; }
}
}