2021-09-07 11:32:24 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace bzit.bomg.Models
|
|
|
|
|
{
|
|
|
|
|
public class BookmarkItemViewModel
|
|
|
|
|
{
|
|
|
|
|
public string SiteName { get; set; }
|
|
|
|
|
public string SiteAddress { get; set; }
|
|
|
|
|
public string SiteDescription { get; set; }
|
|
|
|
|
public string FaviconAddress { get; set; }
|
|
|
|
|
public string TreeviewPath { get; set; }
|
|
|
|
|
|
2021-09-09 21:39:23 +00:00
|
|
|
|
//public BookmarkItemModel ToModel()
|
|
|
|
|
//{
|
|
|
|
|
// return new BookmarkItemModel()
|
|
|
|
|
// {
|
|
|
|
|
// SiteName = this.SiteName,
|
|
|
|
|
// SiteAddress = this.SiteAddress,
|
|
|
|
|
// SiteDescription = this.SiteDescription,
|
|
|
|
|
// FaviconAddress = this.FaviconAddress,
|
|
|
|
|
// TreeviewPath = this.TreeviewPath
|
|
|
|
|
// };
|
|
|
|
|
//}
|
2021-09-07 11:32:24 +00:00
|
|
|
|
|
|
|
|
|
public new string ToString()
|
|
|
|
|
{
|
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
|
sb.Append("Name = ");
|
|
|
|
|
sb.Append(this.SiteName ?? string.Empty);
|
|
|
|
|
sb.Append(Environment.NewLine);
|
|
|
|
|
|
|
|
|
|
sb.Append("Address = ");
|
|
|
|
|
sb.Append(this.SiteAddress ?? string.Empty);
|
|
|
|
|
sb.Append(Environment.NewLine);
|
|
|
|
|
|
|
|
|
|
sb.Append("Description = ");
|
|
|
|
|
sb.Append(this.SiteDescription ?? string.Empty);
|
|
|
|
|
sb.Append(Environment.NewLine);
|
|
|
|
|
|
|
|
|
|
return sb.ToString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|