This commit is contained in:
2022-03-06 16:08:44 +00:00
parent cc69f6b3d3
commit 5eab2c43bd
3 changed files with 26 additions and 11 deletions

View File

@@ -6,14 +6,26 @@ using Newtonsoft.Json;
namespace AyaNova.Models
{
public class CustomerNotifySubscription
{
public long Id { get; set; }
public uint Concurrency { get; set; }
[Required]
public long TranslationId { get; set; }
[Required]
public string LanguageOverride { get; set; }
[Required]
public string TimeZoneOverride { get; set; }
[Required]
public string CurrencyName { get; set; }
[Required]
public bool Hour12 { get; set; }
public List<string> CustomerTags { get; set; }//Tags to match customer with this notification
public TimeSpan AdvanceNotice { get; set; }
public TimeSpan AdvanceNotice { get; set; }
public long? LinkReportId { get; set; }
//CREATE NOTIFY EVENT CONDITIONS - Following fields are all conditions set on whether to create a notify event or not
@@ -37,6 +49,7 @@ namespace AyaNova.Models
AgeValue = TimeSpan.Zero;
AdvanceNotice = TimeSpan.Zero;
LinkReportId = 0;
}
}//eoc