This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user