mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-25 08:49:22 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
15 lines
425 B
C#
15 lines
425 B
C#
namespace Sandbox.Services;
|
|
|
|
public class NotificationDto
|
|
{
|
|
public DateTimeOffset Created { get; set; }
|
|
public DateTimeOffset Updated { get; set; }
|
|
public int Count { get; set; }
|
|
public DateTimeOffset? Read { get; set; }
|
|
public string NoticeType { get; set; }
|
|
public string Url { get; set; }
|
|
public string Icon { get; set; }
|
|
public string Text { get; set; }
|
|
public Dictionary<string, object> Data { get; set; }
|
|
}
|