25 lines
551 B
C#
25 lines
551 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace gehGassiApp.Domain.Favourites
|
|
{
|
|
/// <summary>
|
|
/// Repräsentiert eine Favoriten Kategorie
|
|
/// </summary>
|
|
public partial class FavouriteCategory
|
|
{
|
|
/// <summary>
|
|
/// Objektklasse der Verknüpfung
|
|
/// </summary>
|
|
public string Table { get; set; }
|
|
|
|
/// <summary>
|
|
/// Name der Karegorie
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
}
|
|
}
|