Files
sbox-public/engine/Sandbox.Services/Api/Models/NotificationDto.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

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; }
}