mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-22 21:07:21 -05:00
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
14 lines
323 B
C#
14 lines
323 B
C#
using System;
|
|
|
|
namespace API.DTOs.Account;
|
|
#nullable enable
|
|
|
|
public sealed record MemberInfoDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Username { get; set; } = string.Empty;
|
|
public DateTime Created { get; set; }
|
|
public DateTime CreatedUtc { get; set; }
|
|
public string? CoverImage { get; set; }
|
|
}
|