Created
September 28, 2017 10:46
-
-
Save NMZivkovic/dee383ba4b58dc60f64e5826d976ea1f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class StartedReadingMessage : Message | |
{ | |
public StartedReadingMessage(string user, string article) | |
: base(user, article) {} | |
} | |
class StopedReadingMessage : Message | |
{ | |
public StopedReadingMessage(string user, string article) | |
: base (user, article) {} | |
} | |
public class ReportMessage : Message | |
{ | |
public long Milliseconds { get; private set; } | |
public ReportMessage(string user, string article, long milliseconds) | |
: base (user, article) | |
{ | |
Milliseconds = milliseconds; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment