namespace Flawless.Communication.Shared; public record IssueInfo( int Id, string Author, string Title, DateTime CreateAt, DateTime LastUpdate, bool closed, string? Tag); public record IssueDetailInfo( int Id, string Author, string Title, string Description, DateTime CreateAt, DateTime LastUpdate, bool closed, string? Tag); public record IssueCommentInfo( int Id, string Author, string Content, DateTime CreateAt, DateTime LastUpdate, ulong? ReplyTo);