Skip to content

Instantly share code, notes, and snippets.

@mortezadalil
Created December 8, 2019 10:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mortezadalil/76adcabb991ce5da4d712152c4a74fa3 to your computer and use it in GitHub Desktop.
Save mortezadalil/76adcabb991ce5da4d712152c4a74fa3 to your computer and use it in GitHub Desktop.
public abstract class UseCaseResponseMessage
{
public bool Success { get; }
public string Message { get; }
protected UseCaseResponseMessage(bool success = false, string message = null)
{
Success = success;
Message = message;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment