Add AM/PM to default date format as it was previously missing it

This commit is contained in:
Alexey Golub 2017-10-01 11:27:21 +03:00
parent ca452d2421
commit b280f8b736

View file

@ -6,7 +6,7 @@ namespace DiscordChatExporter.Services
public class SettingsService : SettingsManager, ISettingsService public class SettingsService : SettingsManager, ISettingsService
{ {
public Theme Theme { get; set; } public Theme Theme { get; set; }
public string DateFormat { get; set; } = "dd-MMM-yy hh:mm"; public string DateFormat { get; set; } = "dd-MMM-yy hh:mm tt";
public int MessageGroupLimit { get; set; } = 20; public int MessageGroupLimit { get; set; } = 20;
public string LastToken { get; set; } public string LastToken { get; set; }