mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 14:54:11 +00:00
14 lines
337 B
C#
14 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 }]";
|
|
}
|
|
}
|
|
}
|