Advertisement
HAR1F

Day.cs

Feb 28th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.30 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Realms;
  5.  
  6. namespace Calculator2
  7. {
  8.     class Day : RealmObject
  9.     {
  10.         public string Id { get; set; }
  11.         public string Date { get; set; }
  12.  
  13.         public string DateLast { get; set; }
  14.         public string LastSigaret { get; set; }
  15.         public string LastSigaretYesterday { get; set; }
  16.         public string FirstSigaret { get; set; }
  17.         public string LastAlcohol { get; set; }
  18.         public string LastAlcoholYesterday { get; set; }
  19.         public string FirstAlcohol { get; set; }
  20.  
  21.         public string LastDay { get; set; }
  22.         public string NextDay { get; set; }
  23.  
  24.         public int CntSigarets { get; set; }
  25.         public int CntSigaretsToday { get; set; }
  26.         public int CntAlcohol { get; set; }
  27.         public int CntAlcoholToday { get; set; }
  28.  
  29.         public int SigaretAverageSpan { get; set; }
  30.         public int SigaretAverageSpanYesterday { get; set; }
  31.         public int AlcoholAverageSpan { get; set; }
  32.         public int AlcoholAverageSpanYesterday { get; set; }
  33.  
  34.         public int CntEndSmoking { get; set; }
  35.         public int CntEndDrink { get; set; }
  36.         public int MaxTimeWithoutSigaret { get; set; }
  37.         public int MaxTimeWithoutAlcohol { get; set; }
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement