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