| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Linq; |
| | | 4 | | using System.Threading.Tasks; |
| | | 5 | | |
| | | 6 | | namespace SVETA.Api.Data.Domain |
| | | 7 | | { |
| | | 8 | | public class CrmSettings |
| | | 9 | | { |
| | 0 | 10 | | public string AuthServiceUri { get; set; } |
| | 0 | 11 | | public string ODataServiceAddr { get; set; } |
| | 0 | 12 | | public string DaDataServiceAddr { get; set; } |
| | 0 | 13 | | public string Username { get; set; } |
| | 0 | 14 | | public PasswordSetting Password { get; set; } |
| | 0 | 15 | | public bool ForceUseSession { get; set; } |
| | | 16 | | } |
| | | 17 | | |
| | | 18 | | public class PasswordSetting |
| | | 19 | | { |
| | | 20 | | public bool Encrypted { get; set; } |
| | | 21 | | public string Value { get; set; } |
| | | 22 | | } |
| | | 23 | | } |