mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
37 lines
882 B
C#
37 lines
882 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Routing;
|
|
|
|
namespace BuildFeed.Models.ViewModel
|
|
{
|
|
public class SitemapData
|
|
{
|
|
public SitemapDataBuild[] Builds { get; set; }
|
|
public Dictionary<string, SitemapPagedAction[]> Actions { get; set; }
|
|
}
|
|
|
|
public class SitemapDataBuild
|
|
{
|
|
public long Id { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
public class SitemapPagedAction
|
|
{
|
|
public string Name { get; set; }
|
|
public RouteValueDictionary UrlParams { get; set; }
|
|
public int Pages { get; set; }
|
|
|
|
public string Action
|
|
{
|
|
get { return UrlParams["action"].ToString(); }
|
|
}
|
|
|
|
public string UniqueId
|
|
{
|
|
get { return UrlParams.GetHashCode().ToString("X8").ToLower(); }
|
|
}
|
|
}
|
|
} |