mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
16 lines
416 B
C#
16 lines
416 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BuildFeed.ViewModel
|
|
{
|
|
public class SitemapPagedAction
|
|
{
|
|
public string Action => UrlParams["action"].ToString();
|
|
|
|
public string Name { get; set; }
|
|
public int Pages { get; set; }
|
|
|
|
public string UniqueId => UrlParams.GetHashCode().ToString("X8").ToLower();
|
|
|
|
public Dictionary<string, object> UrlParams { get; set; }
|
|
}
|
|
} |