LocalizedStrings.cs 429 B

123456789101112131415161718
  1. /**
  2. * Copyright (c) 2012 Nokia Corporation.
  3. */
  4. using NfcNdefTagReader.Resources;
  5. namespace NfcNdefTagReader
  6. {
  7. /// <summary>
  8. /// Provides access to string resources.
  9. /// </summary>
  10. public class LocalizedStrings
  11. {
  12. private static AppResources _localizedResources = new AppResources();
  13. public AppResources LocalizedResources { get { return _localizedResources; } }
  14. }
  15. }