Untitled

 avatar
unknown
plain_text
2 years ago
522 B
5
Indexable
namespace MV.Admin.UI.Classes
{
	public static class Routes
	{
		public static string Film => "Films";
		public static string Genre => "Genres";
		public static string Director => "Directors";
		public static string FilmGenre => "FilmGenres";
		public static string SimilarFilm => "SimilarFilms";
	}
	public static class PageType
	{
		public static string Index => "Index";

		public static string Create => "Create";
		public static string Edit => "Edit";
		public static string Delete => "Delete";
	}
}
Editor is loading...