Anyway, I am the only one who reads this, right?
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user