Skip to content

Instantly share code, notes, and snippets.

@kevingosse
Created January 12, 2016 19:36
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 kevingosse/70e1d24d241776936595 to your computer and use it in GitHub Desktop.
Save kevingosse/70e1d24d241776936595 to your computer and use it in GitHub Desktop.
namespace CustomControls
{
public class AdaptiveImageSource
{
public AdaptiveImageSource(string hiResSource, string lowResSource)
{
this.HiResSource = hiResSource;
this.LowResSource = lowResSource;
}
public string HiResSource { get; }
public string LowResSource { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment