mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
12 lines
294 B
C#
12 lines
294 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BuildFeed.ViewModel
|
|
{
|
|
public class SitemapData
|
|
{
|
|
public Dictionary<string, SitemapPagedAction[]> Actions { get; set; }
|
|
public SitemapDataBuildGroup[] Builds { get; set; }
|
|
|
|
public string[] Labs { get; set; }
|
|
}
|
|
} |