mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
10 lines
175 B
C#
10 lines
175 B
C#
|
using System;
|
|||
|
|
|||
|
namespace BuildFeed.ViewModel
|
|||
|
{
|
|||
|
public class SitemapDataBuild
|
|||
|
{
|
|||
|
public Guid Id { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
}
|
|||
|
}
|