Core refactoring (app doesn't work)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace FoxTube.Models
|
||||
{
|
||||
public class InboxItem
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
public string DefaultIcon { get; set; }
|
||||
public string Avatar { get; set; }
|
||||
|
||||
public string Title { get; set; }
|
||||
public string Description { get; set; }
|
||||
public string Content { get; set; }
|
||||
|
||||
public DateTime TimeStamp { get; set; }
|
||||
public string Type { get; set; }
|
||||
|
||||
public string ShortTimeStamp => $"{TimeStamp.ToShortDateString()} {TimeStamp.ToShortTimeString()}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user