| 1 | // See https://aka.ms/new-console-template for more information |
| 2 | |
| 3 | namespace TelegramNotifier |
| 4 | { |
| 5 | public class TelegramSettings |
| 6 | { |
| 7 | public int API_ID { get; set; } |
| 8 | public string API_HASH { get; set; } |
| 9 | public string AccountPhone { get; set; } |
| 10 | public string SessionPathName { get; set; } |
| 11 | public string LogFileName { get; set; } |
| 12 | } |
| 13 | } |