20 lines
537 B
C#
20 lines
537 B
C#
using System;
|
|
|
|
namespace FoxTube.Core.Models.Inbox
|
|
{
|
|
public class Changelog : InboxItem
|
|
{
|
|
public override string DefaultIcon => "\xE728";
|
|
public override string Title => "What's new in version " + Id;
|
|
public override string Type => "Changelog";
|
|
|
|
public Changelog(string version, string content, string description, DateTime timeStamp)
|
|
{
|
|
Id = version;
|
|
Content = content;
|
|
Description = description;
|
|
TimeStamp = timeStamp;
|
|
}
|
|
}
|
|
}
|