23 lines
617 B
C#
23 lines
617 B
C#
using System;
|
|
|
|
namespace FoxTube.Core.Models.Inbox
|
|
{
|
|
public class DeveloperMessage : InboxItem
|
|
{
|
|
public override string DefaultIcon => "\xE119";
|
|
public override string Title => _title;
|
|
string _title;
|
|
public override string Type => "Message from developers";
|
|
|
|
public DeveloperMessage(string id, string title, string content, DateTime timeStamp, string avatar)
|
|
{
|
|
Id = id;
|
|
_title = title;
|
|
Content = content;
|
|
Description = content;
|
|
TimeStamp = timeStamp;
|
|
Avatar = avatar;
|
|
}
|
|
}
|
|
}
|