Last active
November 3, 2023 20:44
-
-
Save ahmetkucukoglu/6c2179a2a11c5a8ac660f503a58341e2 to your computer and use it in GitHub Desktop.
ConcreteState - DeliveredState
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 DeliveredState : ShipmentState | |
{ | |
public override string ToString() => nameof(DeliveredState); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment