namespace TWASys_App.Models { public class Shared { private static List _list = new List { "80633.jpg", "806372.jpg", "806459.jpg" }; public static string RandomImages() { var r = new Random(); return _list[r.Next(0, _list.Count - 1)]; } } }