Created
January 12, 2016 19:36
-
-
Save kevingosse/70e1d24d241776936595 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
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