mirror of
https://github.com/sphildreth/roadie
synced 2024-11-27 06:30:21 +00:00
15 lines
337 B
C#
15 lines
337 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Roadie.Library.Data
|
|||
|
{
|
|||
|
public partial class Bookmark
|
|||
|
{
|
|||
|
public override string ToString()
|
|||
|
{
|
|||
|
return $"Id [{ this.Id }], BookmarkType [{ this.BookmarkType }], BookmarkTargetId [{ this.BookmarkTargetId }]";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|