Files
tiku-backend.net/Tiku.Application/Content/ContentManagementException.cs
xiong 3f5957d744
Some checks failed
ci / release-gate (push) Has been cancelled
feat(content): establish v2 learning delivery foundation
2026-08-06 09:52:18 +08:00

9 lines
244 B
C#

namespace Tiku.Application.Content;
public sealed record ContentManagementResult<TItem>(TItem Item);
public sealed class ContentManagementException(string message, string code) : Exception(message)
{
public string Code { get; } = code;
}