AmidamaruZXC

Courier

Oct 24th, 2020
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.72 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using GeoCoordinatePortable;
  5.  
  6. namespace ConsoleApp1
  7. {
  8.     public class Courier
  9.     {
  10.         public string Name
  11.         {
  12.             get;
  13.             set;
  14.         }
  15.  
  16.         public long PhoneNumber
  17.         {
  18.             get;
  19.             set;
  20.         }
  21.  
  22.         public double MaxAccWeightOfParcel
  23.         {
  24.             get;
  25.             set;
  26.         }
  27.  
  28.         public bool IsAvailable
  29.         {
  30.             get;
  31.             set;
  32.         }
  33.  
  34.         public GeoCoordinate CurrentPosition
  35.         {
  36.             get;
  37.             set;
  38.         }
  39.  
  40.         public long ID
  41.         {
  42.             get;
  43.             set;
  44.         }
  45.     }
  46. }
  47.  
Add Comment
Please, Sign In to add comment