23 lines
484 B
C#
23 lines
484 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using gehGassiApp.Domain.Common;
|
|
|
|
namespace gehGassiApp.Domain.Walks
|
|
{
|
|
public class WalkShowCategory
|
|
{
|
|
/// <summary>
|
|
/// Auswahl der Anzeige
|
|
/// </summary>
|
|
public WalkShowType ShowType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Name der Karegorie
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
}
|
|
}
|