mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
source code checkin
This commit is contained in:
parent
5f8fb2c825
commit
7e57b72e35
675 changed files with 168433 additions and 0 deletions
17
src/Plugin.Discord/Models/VersionFeedEntry.cs
Normal file
17
src/Plugin.Discord/Models/VersionFeedEntry.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
|
||||
namespace ServerManagerTool.Plugin.Discord
|
||||
{
|
||||
public class VersionFeedEntry
|
||||
{
|
||||
public string Id { get; set; } = string.Empty;
|
||||
public string Title { get; set; } = string.Empty;
|
||||
public string Summary { get; set; } = string.Empty;
|
||||
public Uri Link { get; set; } = null;
|
||||
public DateTimeOffset Updated { get; set; } = DateTimeOffset.Now;
|
||||
public string Content { get; set; } = string.Empty;
|
||||
public string Author { get; set; } = string.Empty;
|
||||
|
||||
public bool IsCurrent { get; set; } = false;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue