mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
18 lines
493 B
C#
18 lines
493 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
/// <summary>
|
|
/// Represents a member of a Kavita server.
|
|
/// </summary>
|
|
public class MemberDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string Username { get; set; }
|
|
public DateTime Created { get; set; }
|
|
public DateTime LastActive { get; set; }
|
|
public IEnumerable<LibraryDto> Libraries { get; set; }
|
|
public IEnumerable<string> Roles { get; set; }
|
|
}
|
|
} |