1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDFSettings
- {
-
- public class DialogCounter
- {
-
-
-
- public bool HasRateUs = false;
-
-
-
- public System.DateTime UpdateTime = System.DateTime.Now;
-
-
-
- public System.DateTime ShowedDate = System.DateTime.Now;
-
-
-
- public int AppOpenedCount = 0;
-
-
-
- public int DialogShowedCount = 0;
-
-
-
- public bool SetDefualtAppDontShow = false;
-
-
-
- public bool HasShowedAfterUpdated = false;
- }
- }
|