Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.72 KB | None | 0 0
  1.   /** Type of the log - default, raw, ... */
  2.     LogType type;
  3.     /** Category for raws */
  4.     Nullable!short category;
  5.     /** Length of the log */
  6.     double length;
  7.     /** Diameter of the log */
  8.     double diameter;
  9.     /** Volume of the log */
  10.     double volume;
  11.     /** FSDU of the log */
  12.     string FSDU;
  13.     /** Whether the log is a rhizome or not */
  14.     bool rhizome;
  15.     /** Log's serial number */
  16.     int number;
  17.     /** Wood type of the log */
  18.     Wood wood;
  19.     /** Quality of the log */
  20.     short quality;
  21.     /** Latitude of the log */
  22.     Nullable!double lat;
  23.     /** Longitude of the log */
  24.     Nullable!double lng;
  25.     /** Date and time when the log was added */
  26.     Nullable!DateTime addedAt;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement