Anyway, I am the only one who reads this, right?
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace FoxTube.Core.Models
|
||||
{
|
||||
public abstract class InboxItem
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public abstract string DefaultIcon { get; }
|
||||
public string Avatar { get; set; }
|
||||
public abstract string Title { get; }
|
||||
public string Description { get; set; }
|
||||
public string Content { get; set; }
|
||||
public DateTime TimeStamp { get; set; }
|
||||
public abstract string Type { get; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user