Created
June 5, 2021 10:38
-
-
Save ssukhpinder/c7b7c677ae473d51082d23b2fd0ad626 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 abstract class AChatroom | |
{ | |
public abstract void Register(User user); | |
public abstract void Post(string fromUser, string toUser, string msg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment