1+ using System ;
2+ namespace MyWorksheet . Website . Shared . ViewModels . ApiResultModels . Webhooks . Out
3+ {
4+ public class OutgoingWebhookModelGet : ViewModelBase
5+ {
6+ private string _callingUrl ;
7+ private Guid _idOutgoingWebhookCase ;
8+ private bool _isActive ;
9+ private Guid _outgoingWebhookId ;
10+ private string _secret ;
11+ private string _numberRangeEntry ;
12+ private string _name ;
13+
14+ public string NumberRangeEntry
15+ {
16+ get { return _numberRangeEntry ; }
17+ set { SetProperty ( ref _numberRangeEntry , value ) ; }
18+ }
19+
20+ public string Name
21+ {
22+ get { return _name ; }
23+ set { SetProperty ( ref _name , value ) ; }
24+ }
25+
26+ public bool IsActive
27+ {
28+ get { return _isActive ; }
29+ set { SetProperty ( ref _isActive , value ) ; }
30+ }
31+
32+ public Guid OutgoingWebhookId
33+ {
34+ get { return _outgoingWebhookId ; }
35+ set { SetProperty ( ref _outgoingWebhookId , value ) ; }
36+ }
37+
38+ public string CallingUrl
39+ {
40+ get { return _callingUrl ; }
41+ set { SetProperty ( ref _callingUrl , value ) ; }
42+ }
43+
44+ public Guid IdOutgoingWebhookCase
45+ {
46+ get { return _idOutgoingWebhookCase ; }
47+ set { SetProperty ( ref _idOutgoingWebhookCase , value ) ; }
48+ }
49+
50+ public string Secret
51+ {
52+ get { return _secret ; }
53+ set { SetProperty ( ref _secret , value ) ; }
54+ }
55+
56+ public override Guid ? GetModelIdentifier ( )
57+ {
58+ return OutgoingWebhookId ;
59+ }
60+ }
61+ }
0 commit comments